| 1 | /** |
| 2 | * @param {string[]} paginas |
| 3 | */ |
| 4 | export function resaltaSiEstasEn(paginas) { |
| 5 | |
| 6 | const pathname = location.pathname |
| 7 | |
| 8 | for (const pagina of paginas) { |
| 9 | |
| 10 | if (pathname === pagina) { |
| 11 | queueMicrotask(() => { |
| 12 | const tab = document.querySelector(".active") |
| 13 | if (tab !== null && tab.closest(".scrollable") !== null) { |
| 14 | tab.scrollIntoView({ inline: "center", block: "end" }) |
| 15 | } |
| 16 | }) |
| 17 | return `class="active"` |
| 18 | } |
| 19 | |
| 20 | } |
| 21 | |
| 22 | return "" |
| 23 | |
| 24 | } |