publish: Change main live canvas to act like a mempool

generated from commit c11e83a16f3a0a1709656326298b882dfedc7d3f
This commit is contained in:
Joshua Seigler 2019-04-08 05:00:35 -04:00
parent 550ac2d3ca
commit 5202046578
2 changed files with 2 additions and 3 deletions

View file

@ -19020,6 +19020,7 @@ function () {
completedBlock.id = data; completedBlock.id = data;
this.applyColors(completedBlock); this.applyColors(completedBlock);
this.blockColors = App.generateColors(data); this.blockColors = App.generateColors(data);
this.applyColors(this.hero);
var blockLink = document.createElement('a'); var blockLink = document.createElement('a');
blockLink.className = 'explorer-link'; blockLink.className = 'explorer-link';
blockLink.href = document.location + '?block=' + data; blockLink.href = document.location + '?block=' + data;
@ -19069,8 +19070,6 @@ function () {
} }
_this2.blockList.insertBefore(completedBlock, _this2.blockList.firstChild); _this2.blockList.insertBefore(completedBlock, _this2.blockList.firstChild);
_this2.applyColors(_this2.hero);
}); });
} }
}, { }, {

File diff suppressed because one or more lines are too long