Merge pull request #2741 from cmgustavo/bug/insight-link

Updates insight link on tx history
This commit is contained in:
Matias Alejo Garcia 2015-05-18 11:52:12 -03:00
commit 9ae2c430ef
1 changed files with 2 additions and 1 deletions

View File

@ -82,7 +82,8 @@
<div ng-show="btx.txid" class="tx-details-blockchain">
<div class="text-center m20t">
<button class="button outline dark-gray tiny" ng-click="$root.openExternalLink('http://' + getShortNetworkName() + '.insight.is/tx/' + btx.txid)">
<button class="button outline dark-gray tiny" ng-click="$root.openExternalLink('https://' +
(getShortNetworkName() == 'test' ? 'test-' : '') + 'insight.bitpay.com/tx/' + btx.txid)">
<span class="text-gray" translate>See it on the blockchain</span>
</button>
</div>