Skip to content

Commit 8f6c389

Browse files
committed
Fix urls
1 parent d38b7f9 commit 8f6c389

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

dist/jquery.github.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*
2-
* jQuery Github - v0.2.8
3-
* A jQuery plugin to display your Github Repositories.
4-
* https://github.com/zenorocha/jquery-github/
5-
*
6-
* Copyright (c) 2013
7-
* MIT License
8-
*/
1+
/*
2+
* jQuery Github - v0.2.8
3+
* A jQuery plugin to display your Github Repositories.
4+
* https://github.com/zenorocha/jquery-github/
5+
*
6+
* Copyright (c) 2013
7+
* MIT License
8+
*/
99
;( function ( $, window, undefined ) {
1010

1111
var pluginName = "github",
@@ -116,12 +116,12 @@
116116
<a href='" + repo_url + "'>" + repo.name + "</a> \
117117
</h3> \
118118
<div class='github-stats'> \
119-
<a class='repo-watchers' href='" + repo_url + "'/watchers'>" + repo.watchers + "</a> \
120-
<a class='repo-forks' href='" + repo_url + "'/forks'>" + repo.forks + "</a> \
119+
<a class='repo-watchers' href='" + repo_url + "/watchers'>" + repo.watchers + "</a> \
120+
<a class='repo-forks' href='" + repo_url + "/network'>" + repo.forks + "</a> \
121121
</div> \
122122
</div> \
123123
<div class='github-box-content'> \
124-
<p>" + repo.description + " &mdash; <a href='" + repo_url + "'#readme'>Read More</a></p> \
124+
<p>" + repo.description + " &mdash; <a href='" + repo_url + "#readme'>Read More</a></p> \
125125
</div> \
126126
<div class='github-box-download'> \
127127
<p class='repo-update'>Latest commit to <strong>master</strong> on " + pushed_at + "</p> \

dist/jquery.github.min.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/jquery.github.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,16 +108,16 @@
108108
<a href='" + repo_url + "'>" + repo.name + "</a> \
109109
</h3> \
110110
<div class='github-stats'> \
111-
<a class='repo-watchers' href='" + repo_url + "'/watchers'>" + repo.watchers + "</a> \
112-
<a class='repo-forks' href='" + repo_url + "'/forks'>" + repo.forks + "</a> \
111+
<a class='repo-watchers' href='" + repo_url + "/watchers'>" + repo.watchers + "</a> \
112+
<a class='repo-forks' href='" + repo_url + "/network'>" + repo.forks + "</a> \
113113
</div> \
114114
</div> \
115115
<div class='github-box-content'> \
116-
<p>" + repo.description + " &mdash; <a href='" + repo_url + "'#readme'>Read More</a></p> \
116+
<p>" + repo.description + " &mdash; <a href='" + repo_url + "#readme'>Read More</a></p> \
117117
</div> \
118118
<div class='github-box-download'> \
119119
<p class='repo-update'>Latest commit to <strong>master</strong> on " + pushed_at + "</p> \
120-
<a class='repo-download' href='" + repo_url + "'/zipball/master'>Download as zip</a> \
120+
<a class='repo-download' href='" + repo_url + "/zipball/master'>Download as zip</a> \
121121
</div> \
122122
</div> \
123123
") );

0 commit comments

Comments
 (0)