Changed the bitcoin logo
This commit is contained in:
parent
1c8f0c19d6
commit
c4ca5c6b79
3 changed files with 21 additions and 1 deletions
|
|
@ -16,4 +16,15 @@ angular.module('copayApp.controllers').controller('preferencesAbout',
|
||||||
var cancelText = gettextCatalog.getString('Go Back');
|
var cancelText = gettextCatalog.getString('Go Back');
|
||||||
externalLinkService.open(url, optIn, title, message, okText, cancelText);
|
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);
|
||||||
|
};
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<span class="label" translate>To</span>
|
<span class="label" translate>To</span>
|
||||||
<span class="payment-proposal-to" ng-if="!recipientType">
|
<span class="payment-proposal-to" ng-if="!recipientType">
|
||||||
<img src="img/icon-bitcoin-small.svg">
|
<i class="icon icon-svg abs-v-center icon-bitcoinlogoplain"></i>
|
||||||
|
|
||||||
<div copy-to-clipboard="toAddress" ng-if="!paypro" class="ellipsis">
|
<div copy-to-clipboard="toAddress" ng-if="!paypro" class="ellipsis">
|
||||||
<contact ng-if="!toName" address="{{toAddress}}"></contact>
|
<contact ng-if="!toName" address="{{toAddress}}"></contact>
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,15 @@
|
||||||
#{{commitHash}}
|
#{{commitHash}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="item item-divider">
|
||||||
|
Bitcoin.com Wallet is a fork of Copay made by Bitpay.
|
||||||
|
</div>
|
||||||
|
<div class="item item-icon-left" ng-click="openExternalLink2()">
|
||||||
|
<i class="icon ion-social-github-outline"></i>
|
||||||
|
<span>See the original project</span>
|
||||||
|
<span class="item-note">
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<div class="item item-divider">
|
<div class="item item-divider">
|
||||||
</div>
|
</div>
|
||||||
<a class="item item-icon-left item-icon-right" ui-sref="tabs.about.termsOfUse">
|
<a class="item item-icon-left item-icon-right" ui-sref="tabs.about.termsOfUse">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue