Created
February 23, 2012 11:51
-
-
Save adtaylor/1892526 to your computer and use it in GitHub Desktop.
Creates an event,`responsiveResize` , that will fire once the user has finished 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
// -------------------------- Resize event handler ------------------------------------ // | |
// Fires an event after resizing has finished | |
var resizeEvent, resizeTimer = null; | |
$(window).bind('resize', function() { | |
if (resizeTimer) clearTimeout(resizeTimer); | |
resizeTimer = setTimeout(resizeEvent, 100); | |
}); | |
resizeEvent = function() { | |
$(window).trigger('responsiveResize'); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment