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 1c9e52a commit 5c35a8bCopy full SHA for 5c35a8b
leaderboard.html
@@ -113,9 +113,11 @@ <h3 style="text-align: center;">NWoC 2020 Leaderboard</h3>
113
var cells = rows[i].split(',');
114
if (cells.length != 2) {
115
$('#leader-div').html('<p>Data could not be parsed.</p>');
116
+ console.log("Offending cell length segment: ", cells.length);
117
+ console.log("data for offending segment: ", cells[1]);
118
return;
119
}
- console.log(cells.length)
120
+ console.log("cells length:", cells.length);
121
console.log("data",cells[1]);
122
sortedData.push({score: parseInt(cells[1].trim()), username: cells[0]});
123
0 commit comments