13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
export default Ember.Component.extend({
|
|
layoutName: 'components/toggle-deleted',
|
|
tagName: 'section',
|
|
classNames: ['information'],
|
|
postStream: Em.computed.alias('topic.postStream'),
|
|
|
|
actions: {
|
|
toggleDeleted: function() {
|
|
this.get('postStream').toggleDeleted();
|
|
}
|
|
}
|
|
});
|