/home/techb158/workloadmatch.com/workloadmatch.com/BackUp/bower_components/jquery/src
NameSizeModeActions
ajax/-0755rm
attributes/-0755rm
core/-0755rm
css/-0755rm
data/-0755rm
deferred/-0755rm
effects/-0755rm
event/-0755rm
exports/-0755rm
manipulation/-0755rm
queue/-0755rm
traversing/-0755rm
var/-0755rm
.eslintrc.json600644editdlrm
ajax.js222540644editdlrm
attributes.js2170644editdlrm
callbacks.js55050644editdlrm
core.js111970644editdlrm
css.js116840644editdlrm
data.js42960644editdlrm
deferred.js108620644editdlrm
deprecated.js8010644editdlrm
dimensions.js17290644editdlrm
effects.js173980644editdlrm
event.js194150644editdlrm
jquery.js6400644editdlrm
manipulation.js125060644editdlrm
offset.js62660644editdlrm
queue.js30910644editdlrm
selector-native.js63940644editdlrm
selector-sizzle.js4110644editdlrm
selector.js660644editdlrm
serialize.js31700644editdlrm
traversing.js45490644editdlrm
wrap.js14570644editdlrm
Edit: /home/techb158/workloadmatch.com/workloadmatch.com/BackUp/bower_components/jquery/src/wrap.js (1457B)
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; } );