Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
js /
jquery /
src /
jquery /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax
[ DIR ]
drwxrwxr-x
attributes
[ DIR ]
drwxrwxr-x
core
[ DIR ]
drwxrwxr-x
css
[ DIR ]
drwxrwxr-x
data
[ DIR ]
drwxrwxr-x
deferred
[ DIR ]
drwxrwxr-x
effects
[ DIR ]
drwxrwxr-x
event
[ DIR ]
drwxrwxr-x
exports
[ DIR ]
drwxrwxr-x
manipulation
[ DIR ]
drwxrwxr-x
queue
[ DIR ]
drwxrwxr-x
traversing
[ DIR ]
drwxrwxr-x
var
[ DIR ]
drwxrwxr-x
.eslintrc.json
360
B
-rwxrwxr-x
ajax.js
21.73
KB
-rwxrwxr-x
attributes.js
217
B
-rwxrwxr-x
callbacks.js
5.37
KB
-rwxrwxr-x
core.js
11.08
KB
-rwxrwxr-x
css.js
11.21
KB
-rwxrwxr-x
data.js
4.2
KB
-rwxrwxr-x
deferred.js
10.48
KB
-rwxrwxr-x
deprecated.js
596
B
-rwxrwxr-x
dimensions.js
1.69
KB
-rwxrwxr-x
effects.js
16.88
KB
-rwxrwxr-x
event.js
18.94
KB
-rwxrwxr-x
jquery.js
640
B
-rwxrwxr-x
manipulation.js
12.15
KB
-rwxrwxr-x
offset.js
6.2
KB
-rwxrwxr-x
queue.js
3.02
KB
-rwxrwxr-x
selector.js
66
B
-rwxrwxr-x
selector-native.js
6.24
KB
-rwxrwxr-x
selector-sizzle.js
411
B
-rwxrwxr-x
serialize.js
3.1
KB
-rwxrwxr-x
traversing.js
4.07
KB
-rwxrwxr-x
wrap.js
1.42
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dimensions.js
define( [ "./core", "./core/access", "./css" ], function( jQuery, access ) { "use strict"; // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { // Margin is only for outerHeight, outerWidth jQuery.fn[ funcName ] = function( margin, value ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); return access( this, function( elem, type, value ) { var doc; if ( jQuery.isWindow( elem ) ) { // $( window ).outerWidth/Height return w/h including scrollbars (gh-1729) return funcName.indexOf( "outer" ) === 0 ? elem[ "inner" + name ] : elem.document.documentElement[ "client" + name ]; } // Get document width or height if ( elem.nodeType === 9 ) { doc = elem.documentElement; // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], // whichever is greatest return Math.max( elem.body[ "scroll" + name ], doc[ "scroll" + name ], elem.body[ "offset" + name ], doc[ "offset" + name ], doc[ "client" + name ] ); } return value === undefined ? // Get width or height on the element, requesting but not forcing parseFloat jQuery.css( elem, type, extra ) : // Set width or height on the element jQuery.style( elem, type, value, extra ); }, type, chainable ? margin : undefined, chainable ); }; } ); } ); return jQuery; } );
Close