Team:UCLA/javascript/jquery.debouncedresize
From 2013.igem.org
Revision as of 09:16, 12 September 2013 by Dewalgupta (Talk | contribs)
(function($) {
var $event = $.event, $special, resizeTimeout;
$special = $event.special.debouncedresize = { setup: function() { $( this ).on( "resize", $special.handler ); }, teardown: function() { $( this ).off( "resize", $special.handler ); }, handler: function( event, execAsap ) { // Save the context var context = this, args = arguments, dispatch = function() { // set correct event type event.type = "debouncedresize"; $event.dispatch.apply( context, args ); };
if ( resizeTimeout ) { clearTimeout( resizeTimeout ); }
execAsap ? dispatch() : resizeTimeout = setTimeout( dispatch, $special.threshold ); }, threshold: 150 };
})(jQuery);