()
| 803 | } |
| 804 | |
| 805 | function highlightNextRow() { |
| 806 | if (!currentHighlightedRowId) { |
| 807 | highlightHandlers[0].handler(); |
| 808 | } else { |
| 809 | if (highlightHandlers.length > 1 && |
| 810 | highlightHandlers[highlightHandlers.length - 1].id == currentHighlightedRowId) { |
| 811 | highlightHandlers[0].handler(); |
| 812 | } else { |
| 813 | for (var i = 1; i < highlightHandlers.length; i++) { |
| 814 | if (highlightHandlers[i - 1].id == currentHighlightedRowId) { |
| 815 | highlightHandlers[i].handler(); |
| 816 | break; |
| 817 | } |
| 818 | } |
| 819 | } |
| 820 | } |
| 821 | smoothScrollToRow(currentHighlightedRowId); |
| 822 | } |
| 823 | |
| 824 | function populateBomTable() { |
| 825 | populateBomHeader(); |
no test coverage detected