Created
July 21, 2016 22:52
-
-
Save BryanBarrera/48a5e285ebac811c7a63bbe9e3270ba5 to your computer and use it in GitHub Desktop.
Done Resizing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var resizeTimer; | |
| $(window).on('resize', function(e) { | |
| clearTimeout(resizeTimer); | |
| resizeTimer = setTimeout(function() { | |
| // Run code here, resizing has "stopped" | |
| }, 250); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment