I\'ve switched to to ui-router. Everything went smoothly, except one thing. On my page I have a select that changes the context of the application. Anyway, previously, when
You can do $state.reload()
$state.reload()
There's a bug with it sometimes not re-instantiating the controller. You can get around that with
$state.transitionTo($state.current, $stateParams, { reload: true, inherit: true, notify: true });