Skip to content
This repository has been archived by the owner on Sep 20, 2021. It is now read-only.

Commit

Permalink
Merge pull request #47 from sggts04/master
Browse files Browse the repository at this point in the history
Change id to Github ID
  • Loading branch information
thesmallstar authored Jan 21, 2020
2 parents 0045e24 + f08844f commit 094635f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myArr = JSON.parse(this.responseText);
document.getElementById('leaderboard').innerHTML =
'<thead><tr><th>Rank</th><th>&nbsp; id</th><th>Points</th></tr></thead><tbody></tbody>'; //same as original structure
'<thead><tr><th>Rank</th><th>Github ID</th><th>Points</th></tr></thead><tbody></tbody>'; //same as original structure
document.getElementById('loader').innerHTML = '';
addToTable(myArr);
}
Expand Down

0 comments on commit 094635f

Please sign in to comment.