fix(card): update bitpay card intro links

This commit is contained in:
Jason Dreyzehner 2016-10-20 18:55:36 -04:00
commit 41831bbb9d

View file

@ -60,13 +60,12 @@ angular.module('copayApp.controllers').controller('bitpayCardIntroController', f
}); });
$scope.orderBitPayCard = function() { $scope.orderBitPayCard = function() {
var url = 'https://bitpay.com/visa/'; var url = 'https://bitpay.com/visa/get-started';
externalLinkService.open(url); externalLinkService.open(url);
}; };
$scope.connectBitPayCard = function() { $scope.connectBitPayCard = function() {
var url = 'https://bitpay.com/visa/login'; var url = 'https://bitpay.com/visa/dashboard/add-to-bitpay-wallet-confirm';
externalLinkService.open(url); externalLinkService.open(url);
}; };
}); });