(cnt)
| 5590 | const SECTION_ANIM_MS = 160; |
| 5591 | |
| 5592 | function clearSectionTimer(cnt) { |
| 5593 | if (cnt && cnt.__closeTimer) { |
| 5594 | clearTimeout(cnt.__closeTimer); |
| 5595 | cnt.__closeTimer = null; |
| 5596 | } |
| 5597 | if (cnt && cnt.__focusTimer) { |
| 5598 | clearTimeout(cnt.__focusTimer); |
| 5599 | cnt.__focusTimer = null; |
| 5600 | } |
| 5601 | } |
| 5602 | |
| 5603 | function openSectionContent(cnt) { |
| 5604 | if (!cnt) return; |
no outgoing calls
no test coverage detected