(selectAllCheckbox)
| 87 | } |
| 88 | |
| 89 | function toggleSelectAll(selectAllCheckbox) { |
| 90 | // Toggle all game checkboxes |
| 91 | const gameCheckboxes = document.querySelectorAll("input[data-path]"); |
| 92 | gameCheckboxes.forEach((checkbox) => { |
| 93 | checkbox.checked = selectAllCheckbox.checked; |
| 94 | }); |
| 95 | updateRunsStatus(); |
| 96 | } |
| 97 | |
| 98 | function updateSelectAllCheckbox() { |
| 99 | const selectAllCheckbox = document.getElementById("select-all"); |
nothing calls this directly
no test coverage detected