I have a link that, when clicked by the user, triggers a page reload. I accomplished this using the method below......
HTML
<div data-ng-hide="backHide" class="offset6 pull-right">
<a href="" data-ng-click="backLinkClick()"><< Back <br/> <br/></a>
</div>
JavaScript
$scope.backLinkClick = function () {
window.location.reload(false);
};
In the controller, I utilized JavaScript for this functionality, but I am interested in achieving the same outcome using AngularJS.