add bp card

This commit is contained in:
Matias Alejo Garcia 2016-08-11 09:09:45 -03:00
commit a80b3b5143
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
76 changed files with 3198 additions and 1 deletions

View file

@ -0,0 +1,16 @@
'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();
};
});