(net)
| 842 | } |
| 843 | |
| 844 | function netClicked(net) { |
| 845 | if (net in netsToHandler) { |
| 846 | netsToHandler[net](); |
| 847 | smoothScrollToRow(currentHighlightedRowId); |
| 848 | } else { |
| 849 | clearHighlightedFootprints(); |
| 850 | highlightedNet = net; |
| 851 | drawHighlights(); |
| 852 | } |
| 853 | } |
| 854 | |
| 855 | function updateFilter(input) { |
| 856 | filter = input.toLowerCase(); |
no test coverage detected