1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-29 20:32:15 -05:00

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

View File

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