Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Created June 10, 2018 22:43
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 lonekorean/3ce475111f2f08f134b6c1944380f3d8 to your computer and use it in GitHub Desktop.
Save lonekorean/3ce475111f2f08f134b6c1944380f3d8 to your computer and use it in GitHub Desktop.
Function to throttle scroll handling
onScrollThrottled() {
if (!this.scrollTimeout) {
this.scrollTimeout = setTimeout(this.onScroll.bind(this), this.scrollDelay);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment