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 cea355b commit 582a8d3Copy full SHA for 582a8d3
assets/application.js
@@ -41,13 +41,13 @@
41
42
$item.append('<span class="bullet">⋅</span>');
43
44
- var $watchers = $("<a>").attr("href", repo.html_url + "/watchers").text(repo.watchers);
+ var $watchers = $("<a>").attr("href", repo.html_url + "/watchers").text(repo.watchers + " watchers");
45
$item.append($("<span>").addClass("watchers").append($watchers));
46
47
48
49
var $forks = $("<a>").attr("href", repo.html_url + "/network").text(repo.forks + " forks");
50
- $item.append($("<span>").append($forks));
+ $item.append($("<span>").addClass("forks").append($forks));
51
52
$item.appendTo("#recently-updated-repos");
53
}
0 commit comments