1
0
mirror of https://github.com/flarum/core.git synced 2025-06-01 20:34:46 +02:00
Toby Zerner 690174297d Rejigging templates for redesign.
- Componentize more stuff, heading in the direction of Ember 2.0
- Start CSS from scratch
- Everything is broken atm!
2015-01-01 20:08:38 +10:30

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);
}
});