(e)
| 184 | |
| 185 | // Dropping Item in Column |
| 186 | function drop(e) { |
| 187 | e.preventDefault(); |
| 188 | const parent = listColumns[currentColumn]; |
| 189 | // Remove Background Color/Padding |
| 190 | listColumns.forEach((column) => { |
| 191 | column.classList.remove('over'); |
| 192 | }); |
| 193 | // Add item to Column |
| 194 | parent.appendChild(draggedItem); |
| 195 | // Dragging complete |
| 196 | dragging = false; |
| 197 | rebuildArrays(); |
| 198 | } |
| 199 | |
| 200 | // On Load |
| 201 | updateDOM(); |
nothing calls this directly
no test coverage detected