Files
hatsune-2025-stats/res/script.js
2026-01-01 21:27:58 -05:00

9 lines
241 B
JavaScript

// deno-lint-ignore no-unused-vars
function scrollToHighlights() {
const element = document.getElementById("highlights");
element.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
console.log("scroll")
}