diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2015-11-13 16:02:32 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-11-13 20:04:07 +0300 |
commit | c69673fe41ee17f46545e87a31ff96cea6c68a17 (patch) | |
tree | b6944633d44b4adf81c1bf33c428334364a6a012 /src/wrap.js | |
parent | 2d9d1f006ac98b3dd1f23de1b721f54eb77346db (diff) | |
download | jquery-c69673fe41ee17f46545e87a31ff96cea6c68a17.tar.gz jquery-c69673fe41ee17f46545e87a31ff96cea6c68a17.zip |
Release: remove revert artefacts
Diffstat (limited to 'src/wrap.js')
-rw-r--r-- | src/wrap.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wrap.js b/src/wrap.js index c85cd304e..32d1d331f 100644 --- a/src/wrap.js +++ b/src/wrap.js @@ -64,11 +64,11 @@ jQuery.fn.extend( { }, unwrap: function() { - return this.parent().each(function() { + return this.parent().each( function() { if ( !jQuery.nodeName( this, "body" ) ) { jQuery( this ).replaceWith( this.childNodes ); } - }).end(); + } ).end(); } } ); |