Changed the bitcoin logo

This commit is contained in:
magmahindenburg 2017-06-18 19:54:38 +09:00
commit c4ca5c6b79
3 changed files with 21 additions and 1 deletions

View file

@ -16,4 +16,15 @@ angular.module('copayApp.controllers').controller('preferencesAbout',
var cancelText = gettextCatalog.getString('Go Back');
externalLinkService.open(url, optIn, title, message, okText, cancelText);
};
$scope.openExternalLink2 = function() {
var url = 'https://github.com/bitpay/copay';
var optIn = true;
var title = gettextCatalog.getString('Open GitHub Project');
var message = gettextCatalog.getString('This will take you to the original Github project for Copay.');
var okText = gettextCatalog.getString('Open GitHub');
var cancelText = gettextCatalog.getString('Go Back');
externalLinkService.open(url, optIn, title, message, okText, cancelText);
};
});