()
| 308 | } |
| 309 | |
| 310 | function getSelectedFileObjects() { |
| 311 | const selected = getActiveSelectedFileCheckboxes().map(cb => cb.value); |
| 312 | if (!selected.length) return []; |
| 313 | const selectedSet = new Set(selected); |
| 314 | return fileData.filter(f => selectedSet.has(escapeHTML(f.name))); |
| 315 | } |
| 316 | |
| 317 | function getDownloadLimit() { |
| 318 | const limit = window.maxNonZipDownloads || MAX_NONZIP_MULTI_DOWNLOAD; |
no test coverage detected