(row, checkbox)
| 162 | } |
| 163 | |
| 164 | function toggleRow(row, checkbox) { |
| 165 | checkbox.checked = !checkbox.checked; |
| 166 | updateRowSelection(row, checkbox.checked); |
| 167 | } |
| 168 | |
| 169 | function buildTrashRow(item) { |
| 170 | const row = document.createElement("div"); |
no test coverage detected