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.hasPaidPlan = plan && plan.price > 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.changeEmail = function() {
|
$scope.$watch('organizationEmail', function(e) {
|
||||||
$('#changeEmailForm').popover('hide');
|
$('#changeEmailForm').popover('hide');
|
||||||
|
});
|
||||||
|
|
||||||
|
$scope.changeEmail = function() {
|
||||||
$scope.changingOrganization = true;
|
$scope.changingOrganization = true;
|
||||||
var params = {
|
var params = {
|
||||||
'orgname': orgname
|
'orgname': orgname
|
||||||
|
|
Reference in a new issue