changed insight to explorer

This commit is contained in:
Kadir Sekha 2018-02-13 17:56:55 +00:00
commit 852cdea342
14 changed files with 28 additions and 28 deletions

View file

@ -119,8 +119,8 @@ angular.module('copayApp.controllers').controller('bitpayCardController', functi
var url = 'https://insight.bitpay.com/tx/' + transactionId;
var optIn = true;
var title = null;
var message = gettextCatalog.getString('View Transaction on explorer.bitcoin.com');
var okText = gettextCatalog.getString('Open Insight');
var message = gettextCatalog.getString('View Transaction on Explorer.Bitcoin.com');
var okText = gettextCatalog.getString('Open Explorer');
var cancelText = gettextCatalog.getString('Go Back');
externalLinkService.open(url, optIn, title, message, okText, cancelText);
};

View file

@ -203,8 +203,8 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
var url = 'https://' + ($scope.getShortNetworkName() == 'test' ? 'test-' : '') + blockexplorerUrl + '/tx/' + btx.txid;
var optIn = true;
var title = null;
var message = gettextCatalog.getString('View Transaction on explorer.bitcoin.com');
var okText = gettextCatalog.getString('Open Insight');
var message = gettextCatalog.getString('View Transaction on Explorer.Bitcoin.com');
var okText = gettextCatalog.getString('Open Explorer');
var cancelText = gettextCatalog.getString('Go Back');
externalLinkService.open(url, optIn, title, message, okText, cancelText);
};