()
| 478 | } |
| 479 | |
| 480 | var initializeComponents = function (){ |
| 481 | var show = $.cookies.get("showComponents") || false; |
| 482 | |
| 483 | // toggle all components visible/invisible (tbody rows only) |
| 484 | $(elId + ' tbody tr').each(function (){ |
| 485 | var row = $(elId).DataTable().row(this); |
| 486 | if (row.node()) { |
| 487 | showComponents(row, show); |
| 488 | } |
| 489 | }); |
| 490 | }; |
| 491 | |
| 492 | var pagingEnabled = response && response.workers && |
| 493 | response.workers.length > minEntriesToShowPagination; |
no test coverage detected