Skip to content

Instantly share code, notes, and snippets.

@tommyp
Created November 15, 2023 10:13
Show Gist options
  • Save tommyp/0697aa8a7777e6ceb875cc75b4f577e4 to your computer and use it in GitHub Desktop.
Save tommyp/0697aa8a7777e6ceb875cc75b4f577e4 to your computer and use it in GitHub Desktop.
let Hooks = {}
Hooks.ScrollableList = {
updated() {
this.el.querySelectorAll("li").forEach((option) => {
option.addEventListener("focus", e => {
e.target.scrollIntoView();
}
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment