Do any of you know how to nicely handle anchor hash linking in AngularJS?
I have the following markup for a simple FAQ-page
On Route change it will scroll to the top of the page.
$scope.$on('$routeChangeSuccess', function () { window.scrollTo(0, 0); });
put this code on your controller.