PORTAL_NAME
I want to reload the page. How can I do this?
Similar to Alexandrin's answer, but using $state rather than $route:
(From JimTheDev's SO answer here.)
$scope.reloadState = function() { $state.go($state.current, {}, {reload: true}); }