Skip to content

Commit

Permalink
fixed a loop iterator var name
Browse files Browse the repository at this point in the history
  • Loading branch information
scottjehl committed Feb 16, 2011
1 parent 17d67be commit e9b43b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions respond.src.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
//only links plz
if( !!href ){
//prevent re-parsing when ripCSS is re-called
for( var i in parsedSheets ){
if( parsedSheets[ i ] === href ){
for( var j in parsedSheets ){
if( parsedSheets[ j ] === href ){
parsed = true;
}
}
Expand Down

0 comments on commit e9b43b8

Please sign in to comment.