()
| 3423 | function wireSelectAll(fileListContent) { |
| 3424 | // Be flexible about how the header checkbox is identified |
| 3425 | const getSelectAll = () => fileListContent.querySelector( |
| 3426 | 'thead input[type="checkbox"].select-all, ' + |
| 3427 | 'thead .select-all input[type="checkbox"], ' + |
| 3428 | 'thead input#selectAll, ' + |
| 3429 | 'thead input#selectAllCheckbox, ' + |
| 3430 | 'thead input[data-select-all]' |
| 3431 | ); |
| 3432 | const selectAll = getSelectAll(); |
| 3433 | if (!selectAll) return; |
| 3434 | if (selectAll.__wiredSelectAll) return; |
no outgoing calls
no test coverage detected