(column)
| 120 | |
| 121 | // Add to Column List, Reset Textbox |
| 122 | function addToColumn(column) { |
| 123 | const itemText = addItems[column].textContent; |
| 124 | const selectedArray = listArrays[column]; |
| 125 | selectedArray.push(itemText); |
| 126 | addItems[column].textContent = ''; |
| 127 | updateDOM(column); |
| 128 | } |
| 129 | |
| 130 | // Show Add Item Input Box |
| 131 | function showInputBox(column) { |
no test coverage detected