<%= obj.title %>
<% _.each(obj.hoverInfo["header"]["indicators"], function(indicator, index){ %>
<%= indicator.title %>: <%= numberWithCommas(Math.round(indicator.value * 100) / 100) %>
<% }); %>
<% _.each(obj.hoverInfo["sections"], function(section, index){ %>
<% if(section["list"]){ %>
<%= section.title %>:
• <%= section.list.join("
• ") %>
<% }else if(section["subsections"]){ %>
<%= section.title %>:
<% var orderedKeys = Object.keys(section["subsections"]).sort(); %> <% _.each(orderedKeys, function(subsection){ %>
<%= subsection %>:
• <%= section["subsections"][subsection].join("
• ") %>
<% }); %> <% } %>
<% }); %>
×