()
| 742 | } |
| 743 | |
| 744 | function activateSelectedRow() { |
| 745 | if ( |
| 746 | currentSelectedIndex >= 0 && |
| 747 | currentSelectedIndex < allNavigableRows.length |
| 748 | ) { |
| 749 | const selectedRow = allNavigableRows[currentSelectedIndex]; |
| 750 | const folderPath = selectedRow.getAttribute("data-path"); |
| 751 | |
| 752 | // Open game |
| 753 | openGame(folderPath); |
| 754 | } |
| 755 | } |
| 756 | |
| 757 | // Filtering functionality |
| 758 | let allGameRows = []; |
no test coverage detected