Replace all occurrences of totalVotes

This commit is contained in:
Gerhard Schlager 2015-05-04 16:20:13 +02:00
parent 86d7412f30
commit 409a367ab7
1 changed files with 2 additions and 2 deletions

View File

@ -3,11 +3,11 @@ export default Em.Component.extend({
classNames: ["results"],
options: function() {
const totalVotes = this.get("poll.voters"),
const voters = this.get("poll.voters"),
backgroundColor = this.get("poll.background");
this.get("poll.options").forEach(option => {
const percentage = totalVotes == 0 ? 0 : Math.floor(100 * option.get("votes") / totalVotes),
const percentage = voters === 0 ? 0 : Math.floor(100 * option.get("votes") / voters),
styles = ["width: " + percentage + "%"];
if (backgroundColor) { styles.push("background: " + backgroundColor); }