]> source.dussan.org Git - jquery.git/commitdiff
Build: another portion of code style fixes
authorOleg Gaidarenko <markelog@gmail.com>
Tue, 22 Dec 2015 18:42:39 +0000 (21:42 +0300)
committerOleg Gaidarenko <markelog@gmail.com>
Tue, 22 Dec 2015 18:42:39 +0000 (21:42 +0300)
src/manipulation/wrapMap.js
src/wrap.js

index a6c07dfd5cb2d00348cb03499ac873309298b384..4bde1df4fc32455a35539a2dafb4d8793b5be0e0 100644 (file)
@@ -15,7 +15,7 @@ var wrapMap = {
 
        // IE8 can't serialize link, script, style, or any html5 (NoScope) tags,
        // unless wrapped in a div with non-breaking characters in front of it.
-       _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>"  ]
+       _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ]
 };
 
 // Support: IE8-IE9
index b377a8739f3ec88d2da49bb31dd2f60797b61837..780a486cb4776b9b276b567b18c6549992bfd30a 100644 (file)
@@ -65,11 +65,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();
        }
 } );