()
| 1103 | return !!tz && tz.querySelectorAll('#uploadCard, #folderManagementCard').length > 0; |
| 1104 | } |
| 1105 | function updateSidebarVisibility() { |
| 1106 | const sb = getSidebar(); |
| 1107 | if (!sb) return; |
| 1108 | const any = hasSidebarCards(); |
| 1109 | sb.style.display = (isZonesCollapsed() || !any) ? 'none' : 'block'; |
| 1110 | } |
| 1111 | function updateTopZoneLayout() { |
| 1112 | const top = getTopZone(); |
| 1113 | const left = getLeftCol(); |
no test coverage detected