fix(website): make back-to-top scroll instant instead of smooth

The smooth scroll behavior felt sluggish on a 505-row page. Instant
jump is more responsive for a utility button.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vinta Chen
2026-03-22 02:24:26 +08:00
parent bdc5c6c5d7
commit 1d05e98537

View File

@@ -294,7 +294,7 @@ if (backToTop) {
}
});
backToTop.addEventListener('click', function () {
window.scrollTo({ top: 0, behavior: 'smooth' });
window.scrollTo({ top: 0 });
});
}