Skip to content

Commit b23eaca

Browse files
authored
Merge pull request #3190 from tessarin/fix-github-popup
Fix incorrect links to GitHub pages
2 parents 7028400 + a316d32 commit b23eaca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

root/static/js/github.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ class GitHubUrl {
147147

148148
+
149149
' <tr><th>Member Since:</th><td><span class="relatize">' + data.created_at + '</span></td></tr>' +
150-
' <tr><th><a href="' + data.html_url + '/followers">Followers</a>:</th><td>' + data.followers + '</td></tr>' +
151-
' <tr><th><a href="' + data.html_url + '/following">Following</a>:</th><td>' + data.following + '</td></tr>' +
152-
' <tr><th><a href="' + data.html_url + '/repositories">Public Repos</a>:</th><td>' + data.public_repos + '</td></tr>' +
150+
' <tr><th><a href="' + data.html_url + '?tab=followers">Followers</a>:</th><td>' + data.followers + '</td></tr>' +
151+
' <tr><th><a href="' + data.html_url + '?tab=following">Following</a>:</th><td>' + data.following + '</td></tr>' +
152+
' <tr><th><a href="' + data.html_url + '?tab=repositories">Public Repos</a>:</th><td>' + data.public_repos + '</td></tr>' +
153153
'</table>';
154154
},
155155
url: function(result) {

0 commit comments

Comments
 (0)