global: implement scroll to top

This commit is contained in:
Agahnim 2026-03-20 16:02:09 +01:00
parent a7d68df9df
commit 3c671f30e9
Signed by: Agahnim
SSH key fingerprint: SHA256:Zj65PJnE0dRYye8Ltk/qDglynyXUxJngQ9qqx/VI+b4

View file

@ -10,6 +10,9 @@
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DotGothic16&family=VT323&display=swap">
<link rel="stylesheet" href="/static/style.css" />
<script src="/static/vendor/htmx.min.js"></script>
<script>
htmx.config.scrollIntoViewOnBoost = false;
</script>
</head>
<body hx-boost="true" hx-target="#content">
@ -56,6 +59,7 @@
document.body.addEventListener('htmx:afterSwap', () => {
updateMiniplayerVisibility();
updateNavState();
window.scrollTo(0, 0);
});
</script>
</body>