(cnt)
| 5601 | } |
| 5602 | |
| 5603 | function openSectionContent(cnt) { |
| 5604 | if (!cnt) return; |
| 5605 | clearSectionTimer(cnt); |
| 5606 | cnt.style.display = "block"; |
| 5607 | cnt.classList.remove("is-closing"); |
| 5608 | requestAnimationFrame(() => { |
| 5609 | cnt.classList.add("is-open"); |
| 5610 | }); |
| 5611 | } |
| 5612 | |
| 5613 | function closeSectionContent(cnt) { |
| 5614 | if (!cnt) return; |
no test coverage detected