mirror of
https://github.com/discourse/discourse.git
synced 2025-01-07 17:43:55 +08:00
14 lines
269 B
JavaScript
14 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");
|
|
}
|
|
}
|
|
});
|