discourse/app/assets/javascripts/discourse/routes/exception.js.es6
Régis Hanol 35e6e5ff67 FIX: footer was missing in some pages
- error pages
- search results pages
- list of all tags
- topics list of a specific tag
- user leaderboard
2015-08-05 16:14:26 +02:00

11 lines
204 B
JavaScript

export default Discourse.Route.extend({
serialize() { return ""; },
actions: {
didTransition() {
this.controllerFor("application").set("showFooter", true);
return true;
}
}
});