at path:
ROOT
/
sistema
/
vendors
/
jquery
/
src
/
wrap.js
run:
R
W
Run
ajax
DIR
2026-04-09 04:12:40
R
W
Run
attributes
DIR
2026-04-09 04:12:40
R
W
Run
core
DIR
2026-04-09 04:12:40
R
W
Run
css
DIR
2026-04-09 04:12:40
R
W
Run
data
DIR
2026-04-09 04:12:40
R
W
Run
effects
DIR
2026-04-09 04:12:40
R
W
Run
event
DIR
2026-04-13 08:51:37
R
W
Run
exports
DIR
2026-04-09 04:12:40
R
W
Run
manipulation
DIR
2026-04-09 04:12:40
R
W
Run
queue
DIR
2026-04-09 04:12:40
R
W
Run
traversing
DIR
2026-04-13 08:51:37
R
W
Run
var
DIR
2026-04-09 04:12:40
R
W
Run
.jshintrc
475 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
ajax.js
21.32 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
attributes.js
202 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
callbacks.js
5.33 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
core.js
11.44 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
css.js
12.86 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
data.js
5 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
deferred.js
4.38 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
deprecated.js
636 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
dimensions.js
1.74 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
effects.js
15.52 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
event.js
18.77 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
intro.js
1.34 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
jquery.js
606 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
manipulation.js
12.07 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
offset.js
5.87 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
outro.js
20 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
queue.js
3 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
selector-native.js
5.52 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
selector-sizzle.js
342 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
selector.js
50 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
serialize.js
3.2 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
traversing.js
3.98 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
wrap.js
1.48 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
error_log
up
📄
wrap.js
Save
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; } );