From fa6507be668ac495ef0f9558b2e321b66c616137 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 15 Sep 2015 10:59:57 -0700 Subject: [PATCH] Fix login error transition --- app/pods/application/loading/template.hbs | 1 + app/pods/login/controller.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 app/pods/application/loading/template.hbs diff --git a/app/pods/application/loading/template.hbs b/app/pods/application/loading/template.hbs new file mode 100644 index 0000000..e5a3e05 --- /dev/null +++ b/app/pods/application/loading/template.hbs @@ -0,0 +1 @@ +{{loading-panel}} diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js index fed3485..496efda 100644 --- a/app/pods/login/controller.js +++ b/app/pods/login/controller.js @@ -11,6 +11,7 @@ export default Ember.Controller.extend({ this.get('flashMessages').clearMessages(); this.transitionToRoute('loading').then(() => { session.authenticate(authenticator, credentials).then(null, (error)=> { + this.transitionToRoute('login'); this.get('flashMessages').error(error.error); }); });