Skip to content

Commit

Permalink
Show Github username over avatar (publiclab#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
govindgoel authored Feb 16, 2020
1 parent 3c76934 commit 43c59c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/community-toolbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -81735,7 +81735,7 @@ function insertRecentContributors(AllContributors){
return `<a href="${commit.author.html_url}">@${commit.author.login}</a>`;
})
avatars = AllContributors.map((commit, i) => {
return `<a href="${commit.author.html_url}" class="hvr-Glow"><img width="100px" src="${commit.author.avatar_url}"></a>`;
return `<a href="${commit.author.html_url}" title="${commit.author.login}" class="hvr-Glow"><img width="100px" src="${commit.author.avatar_url}"></a>`;
})
}

Expand Down
2 changes: 1 addition & 1 deletion src/UI/recentContributorsUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function insertRecentContributors(AllContributors){
return `<a href="${commit.author.html_url}">@${commit.author.login}</a>`;
})
avatars = AllContributors.map((commit, i) => {
return `<a href="${commit.author.html_url}" class="hvr-Glow"><img width="100px" src="${commit.author.avatar_url}"></a>`;
return `<a href="${commit.author.html_url}" title="${commit.author.login}" class="hvr-Glow"><img width="100px" src="${commit.author.avatar_url}"></a>`;
})
}

Expand Down

0 comments on commit 43c59c4

Please sign in to comment.