. :)
, URL-, , .
HTML:
<a href="" ng-click="goToAnchor('/', 'links')">Links</a>
:
angular.module('exampleApp').controller('NavbarCtrl', function ($scope, $location, $timeout, $anchorScroll) {
$scope.goToAnchor = function(path, anchor){
$location.path('/');
$timeout(function() {
$anchorScroll(anchor);
}, 500);
};
});