Skip to content

Instantly share code, notes, and snippets.

@moimikey
Created September 11, 2014 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moimikey/650c3218a02ff640e3ce to your computer and use it in GitHub Desktop.
Save moimikey/650c3218a02ff640e3ce to your computer and use it in GitHub Desktop.
# Detect `y` scroll direction of mousewheel event
Util.scrollDirection = (evt) ->
if evt.detail < 0 or evt.wheelDelta > 0 then 'up' else 'down'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment