mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-11 16:21:24 -05:00
14 lines
269 B
Text
14 lines
269 B
Text
|
export default Ember.Component.extend({
|
||
|
layoutName: "components/poll-voters",
|
||
|
tagName: 'ul',
|
||
|
classNames: ["poll-voters-list"],
|
||
|
isExpanded: false,
|
||
|
numOfVotersToShow: 20,
|
||
|
|
||
|
actions: {
|
||
|
toggleExpand() {
|
||
|
this.toggleProperty("isExpanded");
|
||
|
}
|
||
|
}
|
||
|
});
|