🐛 Replace insight server URL in block links

This commit is contained in:
Joshua Seigler 2017-12-05 11:48:48 -05:00
parent a6b12f40a2
commit efc36034bc

View file

@ -117,7 +117,7 @@ var App = {
playSound('block', 1);
var newBlock = document.createElement('a');
newBlock.className = 'blockDivider';
newBlock.href = 'https://blockchain.masternode.io/block/' + data;
newBlock.href = 'https://insight.dash.org/insight/block/' + data;
newBlock.target = '_blank';
newBlock.setAttribute('rel', 'noopener');
newBlock.appendChild(document.createTextNode(data));