mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Add tests for replaceAll(fn) and wrap(fn) -- mark wrapAll and wrapWithin as TODO
This commit is contained in:
@@ -18,6 +18,10 @@ jQuery.fn.extend({
|
||||
},
|
||||
|
||||
wrapAll: function( html ) {
|
||||
if(jQuery.isFunction(html)) {
|
||||
return this.each(function() { jQuery(this).wrapAll(html.call(this)); });
|
||||
}
|
||||
|
||||
if ( this[0] ) {
|
||||
// The elements to wrap the target around
|
||||
var wrap = jQuery( html, this[0].ownerDocument ).clone();
|
||||
|
||||
Reference in New Issue
Block a user