publish: 🐛 Replace insight server URL in block links

generated from commit efc36034bc
This commit is contained in:
Joshua Seigler 2017-12-05 12:31:22 -05:00
parent aa1f915ce3
commit 6a9dc6aff6
2 changed files with 2 additions and 2 deletions

View file

@ -6820,7 +6820,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));