Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
core /
vendor /
jquery /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
attributes
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
core
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
css
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
data
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
effects
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
event
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
exports
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
manipulation
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
queue
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
sizzle
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
traversing
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
var
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
ajax.js
20.67
KB
-rw-r--r--
2018-04-19 18:15
attributes.js
200
B
-rw-r--r--
2018-04-19 18:15
callbacks.js
5.38
KB
-rw-r--r--
2018-04-19 18:15
core.js
11.51
KB
-rw-r--r--
2018-04-19 18:15
css.js
12.06
KB
-rw-r--r--
2018-04-19 18:15
data.js
4.83
KB
-rw-r--r--
2018-04-19 18:15
deferred.js
4.31
KB
-rw-r--r--
2018-04-19 18:15
deprecated.js
223
B
-rw-r--r--
2018-04-19 18:15
dimensions.js
1.73
KB
-rw-r--r--
2018-04-19 18:15
effects.js
16.52
KB
-rw-r--r--
2018-04-19 18:15
event.js
23.9
KB
-rw-r--r--
2018-04-19 18:15
intro.js
1.36
KB
-rw-r--r--
2018-04-19 18:15
jquery.js
574
B
-rw-r--r--
2018-04-19 18:15
manipulation.js
14.69
KB
-rw-r--r--
2018-04-19 18:15
offset.js
5.46
KB
-rw-r--r--
2018-04-19 18:15
outro.js
5
B
-rw-r--r--
2018-04-19 18:15
queue.js
2.99
KB
-rw-r--r--
2018-04-19 18:15
selector-native.js
4.33
KB
-rw-r--r--
2018-04-19 18:15
selector-sizzle.js
294
B
-rw-r--r--
2018-04-19 18:15
selector.js
33
B
-rw-r--r--
2018-04-19 18:15
serialize.js
3.14
KB
-rw-r--r--
2018-04-19 18:15
traversing.js
4.43
KB
-rw-r--r--
2018-04-19 18:15
wrap.js
1.46
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
define([ "./core", "./core/init", "./manipulation", // clone "./traversing" // parent, contents ], function( jQuery ) { jQuery.fn.extend({ wrapAll: function( html ) { var wrap; if ( jQuery.isFunction( html ) ) { return this.each(function( i ) { jQuery( this ).wrapAll( html.call(this, i) ); }); } if ( 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() { return this.parent().each(function() { if ( !jQuery.nodeName( this, "body" ) ) { jQuery( this ).replaceWith( this.childNodes ); } }).end(); } }); return jQuery; });