I'm using angular 1.5.11 and angular-ui-router 1.0.0-beta.3.
I've implemented "websudo" which is similar to what Github does---it takes you to a login page if you last logged in a long time ago. Upon logging back in, it takes you back to the page that you were in. The catch is that the component you were on should not reload (this way you can resume work). I've tried the following but the component always reloads after logging back in and being redirected to the component's route:
$state.go('component.route', {}, {reload: false, notify: false});
Is there possibly an alternative way to implement this functionality?