From 2fa62991f9ead3c87a2dcfe3fb807d107bc0ed06 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Tue, 28 Jan 2025 15:29:48 +0000 Subject: [PATCH] feat: scroll page to top on Vegvisir navigations (#21) Simple but effective Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/21 --- public/assets/js/shell.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/assets/js/shell.js b/public/assets/js/shell.js index 95bc693..25e6c3e 100644 --- a/public/assets/js/shell.js +++ b/public/assets/js/shell.js @@ -47,4 +47,9 @@ const CLASSNAME_SEARCHBOX_ACTIVE = "searchboxActive"; new vv.Navigation(`/search?q=${event.target.value}`).navigate(searchResultsElement); }, 100); }); +} + +// Scroll page to top on navigation +{ + document.addEventListener(vegvisir.Navigation.EVENTS.FINISHED, () => window.scrollTo({top: 0})); } \ No newline at end of file