mirror of
https://github.com/flarum/framework.git
synced 2024-12-06 09:33:37 +08:00
18 lines
282 B
JavaScript
18 lines
282 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Controller.extend({
|
|
|
|
needs: ['discussions'],
|
|
|
|
showing: false,
|
|
|
|
title: 'Replying to <em>Some Discussion Title</em>',
|
|
|
|
actions: {
|
|
close: function() {
|
|
this.set('showing', false);
|
|
}
|
|
}
|
|
|
|
});
|