()
| 647 | } |
| 648 | |
| 649 | function updateNavigableRows() { |
| 650 | // Get all visible rows (both games and folders) |
| 651 | allNavigableRows = Array.from(document.querySelectorAll(".game-row")).filter( |
| 652 | (row) => row.style.display !== "none", |
| 653 | ); |
| 654 | } |
| 655 | |
| 656 | function setSelectedRow(index) { |
| 657 | // Remove previous selection |
no outgoing calls
no test coverage detected