()
| 185 | } |
| 186 | |
| 187 | function getVisibleCheckedCheckboxes() { |
| 188 | // Get all checked checkboxes and filter out those in hidden rows |
| 189 | const allChecked = document.querySelectorAll("input[data-path]:checked"); |
| 190 | return Array.from(allChecked).filter((checkbox) => { |
| 191 | const row = checkbox.closest(".game-row"); |
| 192 | return row && row.style.display !== "none"; |
| 193 | }); |
| 194 | } |
| 195 | |
| 196 | function fillTextareaWithPaths() { |
| 197 | const selectedCheckboxes = getVisibleCheckedCheckboxes(); |
no outgoing calls
no test coverage detected