feat: scroll page to top on Vegvisir navigations (#21)

Simple but effective

Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/21
This commit is contained in:
Victor Westerlund 2025-01-28 15:29:48 +00:00
parent 359342c7f7
commit 2fa62991f9

View file

@ -48,3 +48,8 @@ const CLASSNAME_SEARCHBOX_ACTIVE = "searchboxActive";
}, 100);
});
}
// Scroll page to top on navigation
{
document.addEventListener(vegvisir.Navigation.EVENTS.FINISHED, () => window.scrollTo({top: 0}));
}