| 123456789101112131415161718192021 |
- export function initNavMenu() {
- const sections = document.querySelectorAll('nav li.section');
- sections.forEach(makeExpandable);
- const activeLink = document.querySelector('nav a.active');
- if (activeLink) {
- activeLink.scrollIntoView({ block: 'center' });
- }
- }
- function makeExpandable(section: Element) {
- const icon = section.querySelector('.section-icon');
- const sublist = section.querySelector('ul');
- if (icon && sublist) {
- icon.addEventListener('click', () => {
- icon.classList.toggle('expanded');
- sublist.classList.toggle('expanded');
- });
- }
- }
|