Ticket #3552: core.js.r6267.diff
File core.js.r6267.diff, 390 bytes (added by , 13 years ago) |
---|
-
/home/marc/www/lib/jQuery/diffs/core.
old new 252 252 253 253 wrapInner: function( html ) { 254 254 return this.each(function(){ 255 jQuery( this ).contents().wrapAll( html ); 255 var $this = jQuery( this ); 256 if ( $this.contents().length ) { 257 $this.contents().wrapAll( html ); 258 } else { 259 $this.html( html ); 260 } 256 261 }); 257 262 }, 258 263