Skip to content

Instantly share code, notes, and snippets.

@codemilli
Created July 26, 2016 23:48
Show Gist options
  • Save codemilli/cbe472c0abbe66072994afebcea51a6e to your computer and use it in GitHub Desktop.
Save codemilli/cbe472c0abbe66072994afebcea51a6e to your computer and use it in GitHub Desktop.
el.addEventListener('scroll', function () {
if (pageYOffset !== 0) {
realCallback();
}
});
el.addEventListener('touchmove', function () {
if (pageYOffset !== 0) {
realCallback();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment