Merge pull request #519 from cmgustavo/feat/confirm-reject-proposal

Show confirmation popup before reject a proposal
This commit is contained in:
Matias Alejo Garcia 2016-10-17 18:22:31 -03:00 committed by GitHub
commit 3934d98292

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() {