We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3dfa4f commit f3e24afCopy full SHA for f3e24af
leaderboard.html
@@ -111,10 +111,10 @@ <h3 style="text-align: center;">NWoC 2020 Leaderboard</h3>
111
var sortedData=[];
112
for(var i = 0; i<rows.length ; i++) {
113
var cells = rows[i].split(',');
114
- if (cells.length != 2) {
115
- $('#leader-div').html('<p>Data could not be parsed.</p>');
116
- return;
117
- }
+ // if (cells.length != 2) {
+ // $('#leader-div').html('<p>Data could not be parsed.</p>');
+ // return;
+ // }
118
console.log("data",cells[1]);
119
sortedData.push({score: parseInt(cells[1].trim()), username: cells[0]});
120
}
0 commit comments