()
| 25 | } |
| 26 | |
| 27 | function navigateToPreviousGame() { |
| 28 | const prevBtn = document.getElementById("prev-game-btn"); |
| 29 | if (prevBtn && !prevBtn.disabled) { |
| 30 | prevBtn.click(); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | function navigateToNextGame() { |
| 35 | const nextBtn = document.getElementById("next-game-btn"); |
no outgoing calls
no test coverage detected