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

@ -47,4 +47,9 @@ const CLASSNAME_SEARCHBOX_ACTIVE = "searchboxActive";
new vv.Navigation(`/search?q=${event.target.value}`).navigate(searchResultsElement); new vv.Navigation(`/search?q=${event.target.value}`).navigate(searchResultsElement);
}, 100); }, 100);
}); });
}
// Scroll page to top on navigation
{
document.addEventListener(vegvisir.Navigation.EVENTS.FINISHED, () => window.scrollTo({top: 0}));
} }