/home/u775757334/domains/civicwelllife.com/public_html/admin/vendor/jquery/src
NameSizeModeActions
ajax/-0755rm
attributes/-0755rm
core/-0755rm
css/-0755rm
data/-0755rm
effects/-0755rm
event/-0755rm
exports/-0755rm
manipulation/-0755rm
queue/-0755rm
traversing/-0755rm
var/-0755rm
.jshintrc4750644editdlrm
ajax.js218300644editdlrm
attributes.js2020644editdlrm
callbacks.js54570644editdlrm
core.js115680644editdlrm
css.js135830644editdlrm
data.js51190644editdlrm
deferred.js44840644editdlrm
deprecated.js6360644editdlrm
dimensions.js17850644editdlrm
effects.js158920644editdlrm
event.js191370644editdlrm
intro.js13760644editdlrm
jquery.js6060644editdlrm
manipulation.js122770644editdlrm
offset.js61220644editdlrm
outro.js200644editdlrm
queue.js30770644editdlrm
selector-native.js56520644editdlrm
selector-sizzle.js3180644editdlrm
selector.js500644editdlrm
serialize.js32730644editdlrm
support.js17130644editdlrm
traversing.js40730644editdlrm
wrap.js15180644editdlrm
Edit: /home/u775757334/domains/civicwelllife.com/public_html/admin/vendor/jquery/src/wrap.js (1518B)
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; } );