Skip to content

Commit

Permalink
jquery core: small code reduction.
Browse files Browse the repository at this point in the history
  • Loading branch information
flesler committed May 6, 2008
1 parent eeab071 commit 789ad4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core.js
Expand Up @@ -1138,16 +1138,16 @@ jQuery.extend({
merge: function( first, second ) { merge: function( first, second ) {
// We have to loop this way because IE & Opera overwrite the length // We have to loop this way because IE & Opera overwrite the length
// expando of getElementsByTagName // expando of getElementsByTagName

var i = 0;
// Also, we need to make sure that the correct elements are being returned // Also, we need to make sure that the correct elements are being returned
// (IE returns comment nodes in a '*' query) // (IE returns comment nodes in a '*' query)
if ( jQuery.browser.msie ) { if ( jQuery.browser.msie ) {
for ( var i = 0; second[ i ]; i++ ) for ( ; second[ i ]; i++ )
if ( second[ i ].nodeType != 8 ) if ( second[ i ].nodeType != 8 )
first.push( second[ i ] ); first.push( second[ i ] );


} else } else
for ( var i = 0; second[ i ]; i++ ) for ( ; second[ i ]; i++ )
first.push( second[ i ] ); first.push( second[ i ] );


return first; return first;
Expand Down

0 comments on commit 789ad4f

Please sign in to comment.