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

@ -5,7 +5,7 @@ angular.module('copayApp.controllers').controller('preferencesBitpayCardControll
$scope.logout = function() {
var title = 'Are you sure you would like to log out of your Bitpay Card account?';
popupService.showConfirm(title, null, function(res) {
popupService.showConfirm(title, null, null, null, function(res) {
if (res) logout();
});
};