Skip to content

Commit

Permalink
Add the ticket number to the link
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Palmer committed Sep 26, 2008
1 parent 8f91b17 commit ede4121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lighthouse-badge.js
Expand Up @@ -38,8 +38,8 @@ if(typeof jQuery != 'undefined') {
$.each(data.tickets, function(index, obj) {
var link = $('<li><a href="' + self.baseURL + 'projects/' + project +
'/tickets/' + obj.ticket.number + '-' + obj.ticket.permalink +
'">' + obj.ticket.title + '</a></li>');
link.appendTo(ticketList)
'">#' + obj.ticket.number + ' ' + obj.ticket.title + '</a></li>');
link.appendTo(ticketList);
});
ticketList.appendTo(container);
});
Expand Down

0 comments on commit ede4121

Please sign in to comment.