1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-23 11:35:57 +00:00

Update bootstrap and jquery versions for bootstrap theme

This commit is contained in:
James Hillyerd
2016-02-22 19:15:37 -08:00
parent 44f6407de8
commit bcc36ee965
172 changed files with 14086 additions and 6273 deletions

View File

@@ -1,22 +1,22 @@
define([
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/
// http://web.archive.org/web/20100324014747/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 );
var timeout = window.setTimeout( next, time );
hooks.stop = function() {
clearTimeout( timeout );
window.clearTimeout( timeout );
};
});
} );
};
return jQuery.fn.delay;
});
} );