mirror of
https://github.com/flarum/framework.git
synced 2024-12-02 23:23:52 +08:00
690174297d
- Componentize more stuff, heading in the direction of Ember 2.0 - Start CSS from scratch - Everything is broken atm!
13 lines
377 B
JavaScript
13 lines
377 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Route.extend({
|
|
|
|
setupController: function(controller, model) {
|
|
this.controllerFor('discussions').set('paneShowing', false);
|
|
this.controllerFor('discussions').set('paned', false);
|
|
this.controllerFor('application').set('showDiscussionStream', false);
|
|
this._super(controller, model);
|
|
}
|
|
|
|
});
|