From d9d4461650b6c9ed33e13c366dc9b67f87e1c93d Mon Sep 17 00:00:00 2001 From: bill bittner Date: Sun, 11 Jun 2017 17:09:51 -0700 Subject: [PATCH] adjusted the tx info returned for successfull publish --- views/index.handlebars | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 += '

Reload to publish another asset

'; document.getElementById('publish-active-area').innerHTML = publishResults; });