ooops, we actually need that :fired:

This commit is contained in:
Régis Hanol 2015-05-15 11:51:10 +02:00
parent a3fb2c002c
commit 42be2b431f
2 changed files with 4 additions and 2 deletions

View File

@ -6,10 +6,12 @@ export default Em.Component.extend({
const voters = this.get("poll.voters");
this.get("poll.options").forEach(option => {
const percentage = voters === 0 ? 0 : Math.floor(100 * option.get("votes") / voters);
const percentage = voters === 0 ? 0 : Math.floor(100 * option.get("votes") / voters),
style = "width: " + percentage + "%".htmlSafe();
option.setProperties({
percentage,
style,
title: I18n.t("poll.option_title", { count: option.get("votes") })
});
});

View File

@ -5,7 +5,7 @@
</tr>
<tr>
<td colspan="2" class="bar-back">
<div class="bar"></div>
<div class="bar" style={{option.style}}></div>
</td>
</tr>
{{/each}}