()
| 1202 | top.style.display = hasAny ? '' : 'none'; |
| 1203 | } |
| 1204 | function showHeaderDropZone() { |
| 1205 | const h = getHeaderDropArea(); |
| 1206 | if (h) { |
| 1207 | h.style.display = 'inline-flex'; |
| 1208 | h.classList.add('drag-active'); |
| 1209 | } |
| 1210 | } |
| 1211 | function hideHeaderDropZone() { |
| 1212 | const h = getHeaderDropArea(); |
| 1213 | if (h) { |
no test coverage detected