Skip to content

Commit

Permalink
Add back missing class/text
Browse files Browse the repository at this point in the history
  • Loading branch information
mjackson committed Jan 27, 2012
1 parent cea355b commit 582a8d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@

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

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");
$item.append($("<span>").addClass("watchers").append($watchers));

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

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

$item.appendTo("#recently-updated-repos");
}
Expand Down

0 comments on commit 582a8d3

Please sign in to comment.