(masterCheckbox)
| 46 | } |
| 47 | |
| 48 | export function toggleAllCheckboxes(masterCheckbox) { |
| 49 | const checkboxes = document.querySelectorAll(".file-checkbox"); |
| 50 | checkboxes.forEach(chk => { |
| 51 | chk.checked = masterCheckbox.checked; |
| 52 | updateRowHighlight(chk); |
| 53 | }); |
| 54 | updateFileActionButtons(); |
| 55 | } |
| 56 | |
| 57 | export function updateFileActionButtons() { |
| 58 | const fileCheckboxes = document.querySelectorAll("#fileList .file-checkbox"); |
nothing calls this directly
no test coverage detected