Skip to content

Commit

Permalink
Merge pull request #735 from alex/patch-6
Browse files Browse the repository at this point in the history
Include the event count on hover
  • Loading branch information
dcramer committed Jan 16, 2013
2 parents 6ad21df + b49e5d0 commit bca886d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sentry/static/sentry/scripts/templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

app.templates = {
group: '' +
'<div class="count" data-count="<%= app.utils.formatNumber(count) %>"><span><%= app.utils.formatNumber(count) %></span></div>' +
'<div class="count" data-count="<%= app.utils.formatNumber(count) %>"><span title="<%= count %>"><%= app.utils.formatNumber(count) %></span></div>' +
'<div class="details">' +
'<h3><a href="<%= permalink %>"><%= title %></a></h3>' +
'<p class="message">' +
Expand Down Expand Up @@ -41,4 +41,4 @@
'</div>' +
'</script>'
};
}(app));
}(app));

0 comments on commit bca886d

Please sign in to comment.