How to reload a controller and entire side using angular-ui-router?
$state.reload() or $state.go('myState') does not work. Only method which works is:
$state.go('anotherState'); $state.go('myState'); - going to another state and back. Then, view is reloaded corretly. How to do it without this hack?
Regards