(cnt, open)
| 5625 | } |
| 5626 | |
| 5627 | function setSectionContentImmediate(cnt, open) { |
| 5628 | if (!cnt) return; |
| 5629 | clearSectionTimer(cnt); |
| 5630 | if (open) { |
| 5631 | cnt.style.display = "block"; |
| 5632 | cnt.classList.add("is-open"); |
| 5633 | cnt.classList.remove("is-closing"); |
| 5634 | } else { |
| 5635 | cnt.style.display = "none"; |
| 5636 | cnt.classList.remove("is-open", "is-closing"); |
| 5637 | } |
| 5638 | } |
| 5639 | |
| 5640 | function focusSectionIntoView(hdr, cnt) { |
| 5641 | if (!hdr || !cnt) return; |
no test coverage detected