diff options
| author | Jonathan Barronville | 2014-06-07 19:13:28 -0400 | 
|---|---|---|
| committer | Jonathan Barronville | 2014-06-07 19:13:28 -0400 | 
| commit | b56e5c671ce89f1c8ddc67a4ac8d2f59de04ea85 (patch) | |
| tree | 80ce4d67ff46505dc1ec77b72daf7bed59abf8b4 /bower_components/jquery/src/queue/delay.js | |
| parent | 67ad58c27c4a2704532246d044e1ecbae2a11022 (diff) | |
| download | sellevate-b56e5c671ce89f1c8ddc67a4ac8d2f59de04ea85.tar.bz2 | |
Yo.
Diffstat (limited to 'bower_components/jquery/src/queue/delay.js')
| -rw-r--r-- | bower_components/jquery/src/queue/delay.js | 22 | 
1 files changed, 22 insertions, 0 deletions
| diff --git a/bower_components/jquery/src/queue/delay.js b/bower_components/jquery/src/queue/delay.js new file mode 100644 index 0000000..4b4498c --- /dev/null +++ b/bower_components/jquery/src/queue/delay.js @@ -0,0 +1,22 @@ +define([ +	"../core", +	"../queue", +	"../effects" // Delay is optional because of this dependency +], function( jQuery ) { + +// Based off of the plugin by Clint Helfers, with permission. +// http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { +	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; +	type = type || "fx"; + +	return this.queue( type, function( next, hooks ) { +		var timeout = setTimeout( next, time ); +		hooks.stop = function() { +			clearTimeout( timeout ); +		}; +	}); +}; + +return jQuery.fn.delay; +}); | 
