Fix scope apply causing rendering error in login controller

This commit is contained in:
Tankred Hase 2014-09-22 14:19:06 +02:00
parent 8199ee741d
commit f3ad08b066
1 changed files with 3 additions and 2 deletions

View File

@ -93,8 +93,9 @@ define(function(require) {
}
function goTo(location) {
$location.path(location);
$scope.$apply();
$scope.$apply(function() {
$location.path(location);
});
}
};