(column)
| 137 | |
| 138 | // Hide Item Input Box |
| 139 | function hideInputBox(column) { |
| 140 | clearList[column].style.display="block"; |
| 141 | addBtns[column].style.visibility = 'visible'; |
| 142 | saveItemBtns[column].style.display = 'none'; |
| 143 | addItemContainers[column].style.display = 'none'; |
| 144 | addToColumn(column); |
| 145 | } |
| 146 | |
| 147 | // Allows arrays to reflect Drag and Drop items |
| 148 | function rebuildArrays() { |
nothing calls this directly
no test coverage detected