Skip to content

Commit 7e4ef0a

Browse files
committed
Minor leaderboard fix
1 parent ba42fb8 commit 7e4ef0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leaderboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ <h3>Leaderboard</h3>
107107
var table = '<table class=\'leaderboard\'><thead><th>Position</th><th class=\'handle\'>GitHub Handle</th><th>Score</th></thead><tbody>';
108108
var pos = 0, currScore = -1;
109109

110-
for(var i = 0; ; i++) {
110+
for(var i = 0; i<rows.length ; i++) {
111111
var cells = rows[i].split(',');
112112
if (cells.length != 2) {
113113
$('#leader-div').html('<p>Data could not be parsed.</p>');

0 commit comments

Comments
 (0)