discourse/plugins/poll/assets/javascripts/components/poll-voters.js.es6

14 lines
269 B
Text
Raw Normal View History

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