Restore Buy bitcoin page and add buy.bitcoin.com as a service there

This commit is contained in:
magmahindenburg 2017-06-22 17:50:59 +09:00
commit a761b58ab0
8 changed files with 114 additions and 16 deletions

View file

@ -0,0 +1,16 @@
'use strict';
angular.module('copayApp.controllers').controller('buyBitcoindotcomController',
function($scope, $timeout, $ionicModal, $log, $state, $ionicHistory, lodash, bitcoincomService, externalLinkService, popupService) {
$scope.openExternalLink = function(url) {
externalLinkService.open(url);
};
var buyBitcoindotcom = function() {
};
$scope.$on("$ionicView.beforeEnter", function(event, data) {
buyBitcoindotcom();
});
});