maatma: avoid useless alert
This commit is contained in:
parent
ddd8da6395
commit
4babb470cd
@ -81,8 +81,9 @@ angular.module("AdLinApp")
|
|||||||
$rootScope.checkLoginState();
|
$rootScope.checkLoginState();
|
||||||
$location.url("/");
|
$location.url("/");
|
||||||
}, function(response) {
|
}, function(response) {
|
||||||
alert(response.data.errmsg);
|
|
||||||
$scope.pleaseWait = false;
|
$scope.pleaseWait = false;
|
||||||
|
if (response.data && response.data.errmsg)
|
||||||
|
alert(response.data.errmsg);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -111,7 +112,8 @@ angular.module("AdLinApp")
|
|||||||
}).then(function(response) {
|
}).then(function(response) {
|
||||||
$scope.tunnels = response.data;
|
$scope.tunnels = response.data;
|
||||||
}, function(response) {
|
}, function(response) {
|
||||||
alert(response.data.errmsg);
|
if (response.data && response.data.errmsg)
|
||||||
|
alert(response.data.errmsg);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
$scope.updateTunnelsList();
|
$scope.updateTunnelsList();
|
||||||
@ -130,8 +132,8 @@ angular.module("AdLinApp")
|
|||||||
$scope.updateTunnelsList();
|
$scope.updateTunnelsList();
|
||||||
$scope.pleaseWaitNew = false;
|
$scope.pleaseWaitNew = false;
|
||||||
}, function(response) {
|
}, function(response) {
|
||||||
alert(response.data.errmsg);
|
|
||||||
$scope.pleaseWaitNew = false;
|
$scope.pleaseWaitNew = false;
|
||||||
|
alert(response.data.errmsg);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -148,8 +150,8 @@ angular.module("AdLinApp")
|
|||||||
$scope.updateTunnelsList();
|
$scope.updateTunnelsList();
|
||||||
tunnel.pleaseWaitDrop = false;
|
tunnel.pleaseWaitDrop = false;
|
||||||
}, function(response) {
|
}, function(response) {
|
||||||
alert(response.data.errmsg);
|
|
||||||
tunnel.pleaseWaitDrop = false;
|
tunnel.pleaseWaitDrop = false;
|
||||||
|
alert(response.data.errmsg);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -224,8 +226,8 @@ angular.module("AdLinApp")
|
|||||||
$scope.updateAssociationD();
|
$scope.updateAssociationD();
|
||||||
$scope.pleaseWaitNewAssociation = false;
|
$scope.pleaseWaitNewAssociation = false;
|
||||||
}, function(response) {
|
}, function(response) {
|
||||||
alert(response.data.errmsg);
|
|
||||||
$scope.pleaseWaitNewAssociation = false;
|
$scope.pleaseWaitNewAssociation = false;
|
||||||
|
alert(response.data.errmsg);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user