diff --git a/views/index.handlebars b/views/index.handlebars index 9710232d..8d6d5690 100644 --- a/views/index.handlebars +++ b/views/index.handlebars @@ -135,11 +135,11 @@ }); socket.on('publish-complete', function(msg){ var publishResults = '
Your publish is complete!
'; + publishResults += 'NOTE: the transaction still needs to be mined by the network before you can access it! This will take a few minutes. To view the transaction on the blockchain explorer click the Transaction ID link below.
'; + publishResults += 'Your Transaction ID is: ' + msg.result.txid + '
'; publishResults += 'Your Claim ID is: ' + msg.result.claim_id + '
'; - publishResults += 'Your Transaction ID is: ' + msg.result.txid + '
'; - publishResults += 'Here is a link to the claim where your asset was published: spee.ch/' + msg.name + '
'; - publishResults += 'Here is a direct link to your asset: spee.ch/' + msg.name + '/' + msg.result.claim_id + '
'; - publishResults += 'NOTE: the transaction still needs to be mined by the network before you can access it! This may take a few minutes. To to view the transaction on the blockchain explorer click the Transaction ID link above.
'; + publishResults += 'Here is a link to the claim where your asset will be published: spee.ch/' + msg.name + '
'; + publishResults += 'Here is a direct link to where your asset will be stored: spee.ch/' + msg.name + '/' + msg.result.claim_id + '
'; publishResults += ''; document.getElementById('publish-active-area').innerHTML = publishResults; });