mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 17:03:42 +02:00
9 lines
No EOL
401 B
JavaScript
9 lines
No EOL
401 B
JavaScript
import { TAG_NAME } from "/assets/js/snippets/HTMLNavMenuElement.mjs";
|
|
|
|
// Bind toggles for the nav menu
|
|
[...document.querySelectorAll("[data-menu]")].forEach(element => {
|
|
element.addEventListener("click", () => document.querySelector(TAG_NAME).toggle());
|
|
});
|
|
|
|
// Scroll page to the top on navigations
|
|
document.addEventListener(vegvisir.Navigation.EVENTS.FINISHED, () => window.scrollTo({ top: 0 })); |