(elId)
| 546 | } |
| 547 | |
| 548 | function toggleComponents(elId) { |
| 549 | var show = $.cookies.get('showComponents') || false; |
| 550 | show = !show; |
| 551 | |
| 552 | var exDate = new Date(); |
| 553 | exDate.setDate(exDate.getDate() + 365); |
| 554 | |
| 555 | $.cookies.set('showComponents', show, {'path':'/', 'expiresAt':exDate.toUTCString()}); |
| 556 | $(elId + ' tbody tr').each(function (){ |
| 557 | var row = $(elId).DataTable().row(this); |
| 558 | if (row.node()) { |
| 559 | showComponents(row, show); |
| 560 | } |
| 561 | }); |
| 562 | } |
| 563 | |
| 564 | function open_visualization(sys) { |
| 565 | window.open('/visualize.html?id='+ $.url("?id") + "&sys=" + sys, '_blank'); |
no test coverage detected