Wallet/src/js/controllers/modals/bitpayCardConfirmation.js

16 lines
375 B
JavaScript
Raw Normal View History

2016-08-10 15:29:31 -03:00
'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();
};
});