(id)
| 5692 | } |
| 5693 | |
| 5694 | function toggleSection(id) { |
| 5695 | const hdr = document.getElementById(id + "Header"); |
| 5696 | const cnt = document.getElementById(id + "Content"); |
| 5697 | if (!hdr || !cnt) return; |
| 5698 | const isCollapsedNow = hdr.classList.toggle("collapsed"); |
| 5699 | if (isCollapsedNow) { |
| 5700 | closeSectionContent(cnt); |
| 5701 | } else { |
| 5702 | openSectionContent(cnt); |
| 5703 | scheduleSectionFocus(hdr, cnt); |
| 5704 | } |
| 5705 | if (!isCollapsedNow && id === "shareLinks") { |
| 5706 | loadShareLinksSection(); |
| 5707 | cnt.dataset.loaded = "1"; |
| 5708 | } |
| 5709 | } |
| 5710 | |
| 5711 | function normalizeAdminSearchText(value) { |
| 5712 | return String(value || "") |
no test coverage detected