From b953dc9ae133a83ab37ba664246693e470ee2ed0 Mon Sep 17 00:00:00 2001 From: John Whitton Date: Tue, 19 Apr 2016 12:34:49 -0700 Subject: Prototype Transaction Details in account-detail.js Rough prototype with hyperlink --- ui/app/account-detail.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'ui/app') diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index 6ed23d482..b8d4100de 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -69,6 +69,23 @@ AccountDetailScreen.prototype.render = function() { }, }, 'EXPORT'), ]), + h('.flex-row.flex-space-around', [ + // h('button', 'GET ETH'), DISABLED UNTIL WORKING + + h('div.font-small', 'Transaction Summary'), + ]), + h('.flex-row.flex-space-around', [ + h('div.font-small','Transaction'), + h('div.font-small','Amount'), + ]), + h('.flex-row.flex-space-around', [ + // h('div'['href','0xfc37bda95ce571bd0a393e8e7f6da394f1420a57b7d53f7c93821bff61f9b580'), + h('a.font-small', + {href: 'http://testnet.etherscan.io/tx/0xfc37bda95ce571bd0a393e8e7f6da394f1420a57b7d53f7c93821bff61f9b580', + target: '_blank'}, + '0xfc37bda...b580'), + h('div.font-small','0.5000 ETH'), + ]), ]), this.exportedAccount(accountDetail), -- cgit