FIX: remove dangerous support for style/background attributes in polls

This commit is contained in:
Régis Hanol
2015-05-15 11:08:51 +02:00
parent fdbcc31a9c
commit a3fb2c002c
5 changed files with 8 additions and 36 deletions

View File

@ -3,19 +3,14 @@ export default Em.Component.extend({
classNames: ["results"],
options: function() {
const voters = this.get("poll.voters"),
backgroundColor = this.get("poll.background");
const voters = this.get("poll.voters");
this.get("poll.options").forEach(option => {
const percentage = voters === 0 ? 0 : Math.floor(100 * option.get("votes") / voters),
styles = ["width: " + percentage + "%"];
if (backgroundColor) { styles.push("background: " + backgroundColor); }
const percentage = voters === 0 ? 0 : Math.floor(100 * option.get("votes") / voters);
option.setProperties({
percentage,
title: I18n.t("poll.option_title", { count: option.get("votes") }),
style: styles.join(";").htmlSafe()
title: I18n.t("poll.option_title", { count: option.get("votes") })
});
});