mirror of
https://github.com/flarum/core.git
synced 2025-06-01 20:34:46 +02:00
- 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);
|
|
}
|
|
|
|
});
|