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 2b509e7 commit 6c11b45Copy full SHA for 6c11b45
Website/js/script.js
@@ -285,6 +285,7 @@ async function fetchSubdirectoryCounts() {
285
fetchRepoStats();
286
toggleStatsSection();
287
});
288
+
289
document.addEventListener("DOMContentLoaded", function() {
290
fetchContributors();
291
@@ -305,7 +306,7 @@ document.addEventListener("DOMContentLoaded", function() {
305
306
contributorDiv.innerHTML = `
307
<img src="${contributor.avatar_url}" alt="${contributor.login}" class="contributor-image">
308
<div class="contributor-info">
- <a href="${contributor.html_url}" target="_blank" class="contributor-github">GitHub Profile</a>
309
+ <a href="${contributor.html_url}" target="_blank" class="contributor-name">${contributor.login}</a>
310
</div>
311
`;
312
0 commit comments