Skip to content

Commit f913a01

Browse files
committed
Build: another portion of code style fixes
1 parent a5be90f commit f913a01

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/manipulation/wrapMap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var wrapMap = {
1515

1616
// IE8 can't serialize link, script, style, or any html5 (NoScope) tags,
1717
// unless wrapped in a div with non-breaking characters in front of it.
18-
_default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ]
18+
_default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ]
1919
};
2020

2121
// Support: IE8-IE9

src/wrap.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ jQuery.fn.extend( {
6565
},
6666

6767
unwrap: function() {
68-
return this.parent().each(function() {
68+
return this.parent().each( function() {
6969
if ( !jQuery.nodeName( this, "body" ) ) {
7070
jQuery( this ).replaceWith( this.childNodes );
7171
}
72-
}).end();
72+
} ).end();
7373
}
7474
} );
7575

0 commit comments

Comments
 (0)