Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function fillContributors()
var avatar = data[iter].author.avatar_url;
var newChild = "\
<div class=\"col-lg-2 col-sm3 text-center member contributor-div\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" alt=\"\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" height=\"200px\" width=\"200px\" alt=\"\">\
<h4><a class=\"github-profile\" target=\"_blank\" href=\"https://github.com/" + login + " \">@" + login + "</a></h3>\
<h5>Commits: " + commits + "</h5>\
</div>\
Expand Down
2 changes: 1 addition & 1 deletion project_contributors/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function projectContributors () {
var avatar = data[iter].avatar_url;

var newChild = "\<div class=\"col-lg-2 col-sm3 text-center member contributor-div\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" alt=\"\">\
<img class=\"img-circle img-responsive img-center team-img\" src=\" " + avatar + "\" height=\"200px\" width=\"200px\" alt=\"\">\
<h4><a class=\"github-profile\" target=\"_blank\" href=\"https://github.com/" + login + " \">@" + login + "</a></h3>\
<h5>Contributions: " + contributions + "</h5></div>";
contributorsDiv.innerHTML += newChild;
Expand Down