Merge pull request #310 from astagi/feature/addtooltippoints

Add tooltip for points per role
stable
Jesús Espino 2015-02-02 16:44:13 +01:00
commit 0de4f1a59d
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ul.points-per-role
span.points <%- totalPoints %> span.points <%- totalPoints %>
span.role total span.role total
<% _.each(roles, function(role) { %> <% _.each(roles, function(role) { %>
li(class!="total <% if(editable){ %>clickable<% } %>", data-role-id!="<%- role.id %>") li(class!="total <% if(editable){ %>clickable<% } %>", data-role-id!="<%- role.id %>", title!="<%- role.name %>")
span.points <%- role.points %> span.points <%- role.points %>
span.role <%- role.name %> span.role <%- role.name %>
<% }); %> <% }); %>