Show confirmation popup before reject a proposal

This commit is contained in:
Gustavo Maximiliano Cortez 2016-10-17 18:18:40 -03:00
parent 3ac30e8472
commit 9377a55bcd
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 11 additions and 7 deletions

View File

@ -96,16 +96,20 @@ angular.module('copayApp.controllers').controller('txpDetailsController', functi
};
$scope.reject = function(txp) {
$scope.loading = true;
var title = gettextCatalog.getString('Warning!');
var msg = gettextCatalog.getString('Are you sure you want to reject this transaction?');
popupService.showConfirm(title, msg, null, null, function(res) {
if (res) {
$scope.loading = true;
walletService.reject($scope.wallet, $scope.tx, function(err, txpr) {
if (err)
return setError(err, gettextCatalog.getString('Could not reject payment'));
walletService.reject($scope.wallet, $scope.tx, function(err, txpr) {
if (err)
return setError(err, gettextCatalog.getString('Could not reject payment'));
$scope.close();
$scope.close();
});
}
});
};
$scope.remove = function() {