Skip to content

Instantly share code, notes, and snippets.

@lambda2
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save lambda2/0e01e12f353b3255059d to your computer and use it in GitHub Desktop.

Select an option

Save lambda2/0e01e12f353b3255059d to your computer and use it in GitHub Desktop.
Prevent overflow scrolling
$ ->
item = $('[data-prevented-scroll]')
h = item.height()
sh = item.get(0).scrollHeight
item.bind 'mousewheel', (e, d) ->
e.preventDefault() if (@.scrollTop is (sh - h) and d < 0) or (@.scrollTop is 0 and d > 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment