Skip to content

Instantly share code, notes, and snippets.

@edave64
Last active November 26, 2019 10:36
Show Gist options
  • Save edave64/d16df621900c86f3ab658c3adadc4a93 to your computer and use it in GitHub Desktop.
Save edave64/d16df621900c86f3ab658c3adadc4a93 to your computer and use it in GitHub Desktop.
function handler (e) {
if (!e.currentTarget.classList.contains('vertical')) {
e.currentTarget.scrollBy({ top: 0, left: e.deltaY, behavior: 'auto' })
}
}
a = document.querySelector('.panel')
a.addEventListener('wheel', (e) => { handler(e) })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment