()
| 498 | } |
| 499 | } |
| 500 | function hideHeaderDockPersistent() { |
| 501 | const h = getHeaderDropArea(); |
| 502 | if (h) { |
| 503 | h.classList.remove('dock-visible'); |
| 504 | if (h.children.length === 0) h.style.display = 'none'; |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | const COLLAPSE_ANIMATION_MS = 420; |
| 509 | const COLLAPSE_TARGET_SCALE = 0.14; |
no test coverage detected