Use External Link Service

This commit is contained in:
Sebastiaan Pasma 2018-05-23 11:35:19 +02:00
commit 7643ea02cb
3 changed files with 5 additions and 13 deletions

View file

@ -201,7 +201,7 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
$scope.viewOnBlockchain = function() {
var btx = $scope.btx;
var url = 'https://' + ($scope.getShortNetworkName() == 'test' ? 'test-' : '') + blockexplorerUrl + '/tx/' + btx.txid;
window.open(url, '_system');
externalLinkService.open(url, false);
};
$scope.getShortNetworkName = function() {