()
| 1209 | } |
| 1210 | } |
| 1211 | function hideHeaderDropZone() { |
| 1212 | const h = getHeaderDropArea(); |
| 1213 | if (h) { |
| 1214 | h.classList.remove('drag-active'); |
| 1215 | if (h.children.length === 0 && !isZonesCollapsed()) h.style.display = 'none'; |
| 1216 | } |
| 1217 | } |
| 1218 | |
| 1219 | function makeCardDraggable(card) { |
| 1220 | if (!card) return; |
no test coverage detected