Make error disappear when email box is edited
This commit is contained in:
parent
8081680947
commit
d71b50d6b1
1 changed files with 4 additions and 1 deletions
|
@ -1467,8 +1467,11 @@ function OrgAdminCtrl($rootScope, $scope, $timeout, Restangular, $routeParams, U
|
|||
$scope.hasPaidPlan = plan && plan.price > 0;
|
||||
};
|
||||
|
||||
$scope.changeEmail = function() {
|
||||
$scope.$watch('organizationEmail', function(e) {
|
||||
$('#changeEmailForm').popover('hide');
|
||||
});
|
||||
|
||||
$scope.changeEmail = function() {
|
||||
$scope.changingOrganization = true;
|
||||
var params = {
|
||||
'orgname': orgname
|
||||
|
|
Reference in a new issue