Skip to content

Commit 582a8d3

Browse files
committed
Add back missing class/text
1 parent cea355b commit 582a8d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/application.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141

4242
$item.append('<span class="bullet">&sdot;</span>');
4343

44-
var $watchers = $("<a>").attr("href", repo.html_url + "/watchers").text(repo.watchers);
44+
var $watchers = $("<a>").attr("href", repo.html_url + "/watchers").text(repo.watchers + " watchers");
4545
$item.append($("<span>").addClass("watchers").append($watchers));
4646

4747
$item.append('<span class="bullet">&sdot;</span>');
4848

4949
var $forks = $("<a>").attr("href", repo.html_url + "/network").text(repo.forks + " forks");
50-
$item.append($("<span>").append($forks));
50+
$item.append($("<span>").addClass("forks").append($forks));
5151

5252
$item.appendTo("#recently-updated-repos");
5353
}

0 commit comments

Comments
 (0)