003 File Manager
Current Path:
/usr/local/www/sites/shared/phpmyadmin/js/vendor/jquery
usr
/
local
/
www
/
sites
/
shared
/
phpmyadmin
/
js
/
vendor
/
jquery
/
📁
..
📄
MIT-LICENSE.txt
(1.07 KB)
📄
additional-methods.js
(41.11 KB)
📄
jquery-migrate.js
(17.4 KB)
📄
jquery-ui-timepicker-addon.js
(76.64 KB)
📄
jquery-ui.min.js
(247.74 KB)
📄
jquery.ba-hashchange-1.3.js
(16.13 KB)
📄
jquery.debounce-1.0.5.js
(1.14 KB)
📄
jquery.event.drag-2.2.js
(12.53 KB)
📄
jquery.fullscreen.js
(5.52 KB)
📄
jquery.md5.js
(9.35 KB)
📄
jquery.min.js
(84.89 KB)
📄
jquery.mousewheel.js
(8.07 KB)
📄
jquery.sortableTable.js
(8.07 KB)
📄
jquery.svg.js
(55.32 KB)
📄
jquery.tablesorter.js
(39.16 KB)
📄
jquery.uitablefilter.js
(3.4 KB)
📄
jquery.validate.js
(47.55 KB)
Editing: jquery.debounce-1.0.5.js
/** * Debounce and throttle function's decorator plugin 1.0.5 * * Copyright (c) 2009 Filatov Dmitry (alpha@zforms.ru) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * */ (function($) { $.extend({ debounce : function(fn, timeout, invokeAsap, ctx) { if(arguments.length == 3 && typeof invokeAsap != 'boolean') { ctx = invokeAsap; invokeAsap = false; } var timer; return function() { var args = arguments; ctx = ctx || this; invokeAsap && !timer && fn.apply(ctx, args); clearTimeout(timer); timer = setTimeout(function() { !invokeAsap && fn.apply(ctx, args); timer = null; }, timeout); }; }, throttle : function(fn, timeout, ctx) { var timer, args, needInvoke; return function() { args = arguments; needInvoke = true; ctx = ctx || this; if(!timer) { (function() { if(needInvoke) { fn.apply(ctx, args); needInvoke = false; timer = setTimeout(arguments.callee, timeout); } else { timer = null; } })(); } }; } }); })(jQuery);
Upload File
Create Folder