(id)
| 282 | } |
| 283 | |
| 284 | function setActiveNav(id) { |
| 285 | document.querySelectorAll('.nav-item, .mobile-category-item').forEach((item) => { |
| 286 | item.classList.toggle('active', item.dataset.id === id); |
| 287 | }); |
| 288 | } |
| 289 | |
| 290 | function updateUrl({ sectionId, query, replace = false }) { |
| 291 | const url = new URL(window.location); |
no outgoing calls
no test coverage detected