This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/poll/assets/javascripts/discourse/templates/components/poll-breakdown-option.hbs
2022-12-28 13:11:12 +00:00

21 lines
497 B
Handlebars

<li
class="poll-breakdown-option"
style={{this.colorBackgroundStyle}}
{{on "mouseover" @onMouseOver}}
{{on "mouseout" @onMouseOut}}
role="button"
>
<span
class="poll-breakdown-option-color"
style={{this.colorPreviewStyle}}
></span>
<span class="poll-breakdown-option-count">
{{#if this.showPercentage}}
{{this.percent}}%
{{else}}
{{@option.votes}}
{{/if}}
</span>
<span class="poll-breakdown-option-text">{{html-safe @option.html}}</span>
</li>