Skip to content

Instantly share code, notes, and snippets.

@elgreg
Created April 3, 2014 21:56
Show Gist options
  • Save elgreg/9963699 to your computer and use it in GitHub Desktop.
Save elgreg/9963699 to your computer and use it in GitHub Desktop.
the scrollTop function from mobile boilerplate in coffeescript just in case I need it
# thx. HTML5 Mobile Boilerplate
# https://github.com/h5bp/mobile-boilerplate/blob/v4.1.0/js/helper.js#L43
getScrollTop = ->
return win.pageYOffset or
doc.compatMode is 'CSS1Compat' and doc.documentElement.scrollTop or
doc.body.scrollTop or
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment