FIX: footer was missing in some pages

- error pages
- search results pages
- list of all tags
- topics list of a specific tag
- user leaderboard
This commit is contained in:
Régis Hanol
2015-08-05 16:14:26 +02:00
parent d1994cad27
commit 35e6e5ff67
11 changed files with 120 additions and 89 deletions

View File

@ -53,7 +53,7 @@ const ApplicationRoute = Discourse.Route.extend(OpenComposer, {
error(err, transition) {
if (err.status === 404) {
// 404
this.intermediateTransitionTo('unknown');
this.transitionTo('unknown');
return;
}
@ -74,7 +74,7 @@ const ApplicationRoute = Discourse.Route.extend(OpenComposer, {
}
exceptionController.setProperties({ lastTransition: transition, thrown: err });
this.intermediateTransitionTo('exception');
this.transitionTo('exception');
},
showLogin: unlessReadOnly('handleShowLogin'),