Skip to content

Instantly share code, notes, and snippets.

@mpizenberg
Last active December 7, 2016 09:14
Show Gist options
  • Save mpizenberg/ac72dffbb245f4df0487e6379a324f52 to your computer and use it in GitHub Desktop.
Save mpizenberg/ac72dffbb245f4df0487e6379a324f52 to your computer and use it in GitHub Desktop.
Medium Debounce
// Avoid costly calculations while the window size is in flux.
jQuery(window).on(‘resize’, _.debounce(calculateLayout, 150));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment