()
| 32 | } |
| 33 | |
| 34 | function navigateToNextGame() { |
| 35 | const nextBtn = document.getElementById("next-game-btn"); |
| 36 | if (nextBtn && !nextBtn.disabled) { |
| 37 | nextBtn.click(); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | // Help modal functionality |
| 42 | function showHelpModal() { |
no outgoing calls
no test coverage detected