I've looked at the following:
angularjs 'ng-href' not working
AngularJS ng-href does not go to link
Following code does not work either:
<div data-ng-controller="secureNavCtrl" class="container">
<a data-ng-href="/signout">sign out</a>
</div>
The code above only changes the url in the browser, but does not actually change the page.
.controller('secureNavCtrl', ['$scope', '$window', '$location', '$cookies', function ($scope, $window, $location, $cookies) {
}]);
Controller code is empty.
Does anyone know why this is not working? I don't seem to be the only one with this issue.