Wallet/src/js/controllers/modals/bitpayCardConfirmation.js
Gustavo Maximiliano Cortez 54e3545f6b
First Bitpay Card Integration
2016-08-10 16:08:27 -03:00

16 lines
375 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('bitpayCardConfirmationController', function($scope, $timeout, go, bitpayCardService) {
$scope.ok = function() {
bitpayCardService.logout(function() {
go.path('bitpayCard');
});
$scope.cancel();
};
$scope.cancel = function() {
$scope.bitpayCardConfirmationModal.hide();
};
});