Skip to content

Commit b9d389e

Browse files
committedSep 4, 2019
hide modal on login success
1 parent 44579e1 commit b9d389e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎public/js/directives/modalLogin.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@
2424
const response = await authService.login(params);
2525
if(response.status === 403) $scope.errorActive = true;
2626
if(response.status === 401) $scope.errorPass = true;
27-
if(response.status === 200) $scope.success = true;
27+
if(response.status === 200) {
28+
$scope.success = true;
29+
stateService.set('modalLogin', false);
30+
$scope.$apply();
31+
}
2832
}
2933
}
3034
}

0 commit comments

Comments
 (0)