discourse/plugins/poll/assets/javascripts/components/poll-voters.js.es6
2016-06-08 16:19:13 +08:00

13 lines
269 B
JavaScript

export default Ember.Component.extend({
layoutName: "components/poll-voters",
tagName: 'ul',
classNames: ["poll-voters-list"],
isExpanded: false,
numOfVotersToShow: 20,
actions: {
toggleExpand() {
this.toggleProperty("isExpanded");
}
}
});