diff options
author | John Whitton <john.a.whitton@gmail.com> | 2016-04-20 03:34:49 +0800 |
---|---|---|
committer | John Whitton <john.a.whitton@gmail.com> | 2016-04-20 03:34:49 +0800 |
commit | b953dc9ae133a83ab37ba664246693e470ee2ed0 (patch) | |
tree | 5622137f99e3d24177050d61bb6a4d4da049e913 /ui/app/account-detail.js | |
parent | 83b8741bbb335ad1629b72180616835dbb3f5433 (diff) | |
download | tangerine-wallet-browser-b953dc9ae133a83ab37ba664246693e470ee2ed0.tar tangerine-wallet-browser-b953dc9ae133a83ab37ba664246693e470ee2ed0.tar.gz tangerine-wallet-browser-b953dc9ae133a83ab37ba664246693e470ee2ed0.tar.bz2 tangerine-wallet-browser-b953dc9ae133a83ab37ba664246693e470ee2ed0.tar.lz tangerine-wallet-browser-b953dc9ae133a83ab37ba664246693e470ee2ed0.tar.xz tangerine-wallet-browser-b953dc9ae133a83ab37ba664246693e470ee2ed0.tar.zst tangerine-wallet-browser-b953dc9ae133a83ab37ba664246693e470ee2ed0.zip |
Prototype Transaction Details in account-detail.js
Rough prototype with hyperlink
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 17 |
1 files changed, 17 insertions, 0 deletions
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), |