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 : wrap.js
define( [ "./core", "./core/init", "./manipulation", // clone "./traversing" // parent, contents ], function( jQuery ) { "use strict"; jQuery.fn.extend( { wrapAll: function( html ) { var wrap; if ( this[ 0 ] ) { if ( jQuery.isFunction( html ) ) { html = html.call( this[ 0 ] ); } // The elements to wrap the target around wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); if ( this[ 0 ].parentNode ) { wrap.insertBefore( this[ 0 ] ); } wrap.map( function() { var elem = this; while ( elem.firstElementChild ) { elem = elem.firstElementChild; } return elem; } ).append( this ); } return this; }, wrapInner: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each( function( i ) { jQuery( this ).wrapInner( html.call( this, i ) ); } ); } return this.each( function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } } ); }, wrap: function( html ) { var isFunction = jQuery.isFunction( html ); return this.each( function( i ) { jQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html ); } ); }, unwrap: function( selector ) { this.parent( selector ).not( "body" ).each( function() { jQuery( this ).replaceWith( this.childNodes ); } ); return this; } } ); return jQuery; } );
Close