Navigation Menu

Skip to content

Commit

Permalink
Fixed typo in commit #6461.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Jul 19, 2009
1 parent 6d23f2f commit 0ac9898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/manipulation.js
Expand Up @@ -370,8 +370,8 @@ jQuery.extend({
}

// IE completely kills leading whitespace when innerHTML is used
if ( !jQuery.support.leadingWhitespace && leadingWhitespace.test( elem ) ) {
div.insertBefore( context.createTextNode( leadingWhitespace.exec(elem)[0] ), div.firstChild );
if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );
}

elem = jQuery.makeArray( div.childNodes );
Expand Down

0 comments on commit 0ac9898

Please sign in to comment.