fix showconfirm calls

This commit is contained in:
Gabriel Bazán 2016-09-12 13:58:36 -03:00
commit 8eac86d32a
4 changed files with 7 additions and 5 deletions

View file

@ -10,7 +10,7 @@ angular.module('copayApp.controllers').controller('preferencesDeleteWalletContro
$scope.showDeletePopup = function() {
var title = gettextCatalog.getString('Warning!');
var message = gettextCatalog.getString('Are you sure you want to delete this wallet?');
popupService.showConfirm(title, message, function(res) {
popupService.showConfirm(title, message, null, null, function(res) {
if (res) deleteWallet();
});
};