I have an AngularJS app starting at index.html and using ui-router. Based on a trigger I want to reload the complete page. I tried:
$state.go($state.current,
This worked for me in a similar scenario.
$state.go('root.state').then(function(){ $state.reload(); });