Skip to content

Commit

Permalink
fixed global variables introduced in for loop with missing var-keywor…
Browse files Browse the repository at this point in the history
…d (detected via QUnit's no ?noglobals)
  • Loading branch information
jzaefferer committed Sep 15, 2009
1 parent 5550356 commit 0b36b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/selector.js
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ var Expr = Sizzle.selectors = {
} else if ( name === "not" ) {
var not = match[3];

for ( i = 0, l = not.length; i < l; i++ ) {
for ( var i = 0, l = not.length; i < l; i++ ) {
if ( not[i] === elem ) {
return false;
}
Expand Down

0 comments on commit 0b36b26

Please sign in to comment.