ooops, we actually need that :fired:
This commit is contained in:
parent
a3fb2c002c
commit
42be2b431f
|
@ -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") })
|
||||
});
|
||||
});
|
||||
|
|
|
@ -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}}
|
||||
|
|
Loading…
Reference in New Issue