I have a link. When user will click in this link, then the page will be reloaded. I did it by the following way......
Html
<div data-ng-hide="backHide" class="offset6 pull-right">
     <a href="" data-ng-click="backLinkClick()"><< Back  <br/> <br/></a>
 </div>
JS
$scope.backLinkClick = function () {
            window.location.reload(false); 
        };
In the controller I have used javascript and that seems to me very bad. How can I do it using angularjs
 
     
     
     
     
     
    