Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
js /
jquery /
Delete
Unzip
Name
Size
Permission
Date
Action
MIT-LICENSE.txt
1.07
KB
-rw-r--r--
2017-01-23 20:20
additional-methods.js
36.62
KB
-rw-r--r--
2017-01-23 20:20
jquery-2.1.4.min.js
82.37
KB
-rw-r--r--
2017-01-23 20:20
jquery-ui-1.11.4.min.js
234.79
KB
-rw-r--r--
2017-01-23 20:20
jquery-ui-timepicker-addon.js
73.95
KB
-rw-r--r--
2017-01-23 20:20
jquery.ba-hashchange-1.3.js
16.13
KB
-rw-r--r--
2017-01-23 20:20
jquery.cookie.js
3.63
KB
-rw-r--r--
2017-01-23 20:20
jquery.debounce-1.0.5.js
1.14
KB
-rw-r--r--
2017-01-23 20:20
jquery.event.drag-2.2.js
12.53
KB
-rw-r--r--
2017-01-23 20:20
jquery.fullscreen.js
1.61
KB
-rw-r--r--
2017-01-23 20:20
jquery.mousewheel.js
8.08
KB
-rw-r--r--
2017-01-23 20:20
jquery.sortableTable.js
8.07
KB
-rw-r--r--
2017-01-23 20:20
jquery.svg.js
55.32
KB
-rw-r--r--
2017-01-23 20:20
jquery.tablesorter.js
39.16
KB
-rw-r--r--
2017-01-23 20:20
jquery.uitablefilter.js
3.4
KB
-rw-r--r--
2017-01-23 20:20
jquery.validate.js
52.58
KB
-rw-r--r--
2017-01-23 20:20
Save
Rename
/** * 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);