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 #48 from untrulynoxiusmj/master
Browse files Browse the repository at this point in the history
fixed search.html
  • Loading branch information
thesmallstar authored Jan 21, 2020
2 parents 094635f + 539eb85 commit 87bf2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions search.html
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ <h1> Search users here </h1>
img.style.width = '80px';
div.appendChild(img);

$("table ").append("<tr><td>" + "S.No." + "</td><td>" + "&nbsp;" + "Pull Requests" + "</td><td>" + "&nbsp;" + "Issues" + "</td></tr>");
document.getElementById("status").textContent = myArr[i].username + " : " + myArr[i].points;
$("table ").append("<tr><td>" + "S.No." + "</td><td>" + "&nbsp;" + "Pull Requests" + "</td><td>" + "&nbsp;" + "Issues" + "</td><td>" + "Points" + "</td></tr>");
document.getElementById("status").textContent = "Rank : "+ (i+1) + "-" + myArr[i].username + " : " + myArr[i].points;

requests = myArr[i].pullRequests;
issues = myArr[i].issues;
Expand Down

0 comments on commit 87bf2af

Please sign in to comment.