0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

fix logging out from editor page

closes #6514
- removes transition.abort from the signout method because it can override the ember-simple-auth's page refresh
This commit is contained in:
Austin Burdine 2016-02-16 20:02:53 -06:00
parent 39b326aa6d
commit 980c864f68

View file

@ -18,7 +18,6 @@ export default AuthenticatedRoute.extend(styleBody, {
this.get('notifications').clearAll();
if (canInvoke(transition, 'send')) {
transition.send('invalidateSession');
transition.abort();
} else {
this.send('invalidateSession');
}