Skip to content

Instantly share code, notes, and snippets.

@ethyde
Last active August 29, 2015 14:08
Show Gist options
  • Save ethyde/2c0317af6af2ae3e59b7 to your computer and use it in GitHub Desktop.
Save ethyde/2c0317af6af2ae3e59b7 to your computer and use it in GitHub Desktop.
var the_timer;
window.addEventListener('resize', function(){
clearTimeout(the_timer);
the_timer = setTimeout(function(){
console.log('resized');
}, 75);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment