mirror of
https://github.com/flarum/framework.git
synced 2024-12-13 23:23:45 +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);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
});
|