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,6 +96,10 @@ angular.module('copayApp.controllers').controller('txpDetailsController', functi
}; };
$scope.reject = function(txp) { $scope.reject = function(txp) {
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; $scope.loading = true;
walletService.reject($scope.wallet, $scope.tx, function(err, txpr) { walletService.reject($scope.wallet, $scope.tx, function(err, txpr) {
@ -104,8 +108,8 @@ angular.module('copayApp.controllers').controller('txpDetailsController', functi
$scope.close(); $scope.close();
}); });
}
});
}; };
$scope.remove = function() { $scope.remove = function() {