mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
export default Ember.Component.extend({
|
|
layoutName: 'components/toggle-summary',
|
|
tagName: 'section',
|
|
classNames: ['information'],
|
|
postStream: Em.computed.alias('topic.postStream'),
|
|
|
|
actions: {
|
|
toggleSummary() {
|
|
this.get('postStream').toggleSummary();
|
|
}
|
|
}
|
|
});
|