Skip to content

Commit f3e24af

Browse files
committed
test commit
1 parent c3dfa4f commit f3e24af

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

leaderboard.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ <h3 style="text-align: center;">NWoC 2020 Leaderboard</h3>
111111
var sortedData=[];
112112
for(var i = 0; i<rows.length ; i++) {
113113
var cells = rows[i].split(',');
114-
if (cells.length != 2) {
115-
$('#leader-div').html('<p>Data could not be parsed.</p>');
116-
return;
117-
}
114+
// if (cells.length != 2) {
115+
// $('#leader-div').html('<p>Data could not be parsed.</p>');
116+
// return;
117+
// }
118118
console.log("data",cells[1]);
119119
sortedData.push({score: parseInt(cells[1].trim()), username: cells[0]});
120120
}

0 commit comments

Comments
 (0)