diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-04-20 08:27:20 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-04-20 08:27:20 +0800 |
commit | 13cac5943e7a84084e2e961572f7e8bc026d0c1b (patch) | |
tree | 29d34face4d3be37df7d491a5e038a3ed5b57ac4 /ui | |
parent | c858b7058558fb05af350059bb02972aca1ade19 (diff) | |
download | tangerine-wallet-browser-13cac5943e7a84084e2e961572f7e8bc026d0c1b.tar tangerine-wallet-browser-13cac5943e7a84084e2e961572f7e8bc026d0c1b.tar.gz tangerine-wallet-browser-13cac5943e7a84084e2e961572f7e8bc026d0c1b.tar.bz2 tangerine-wallet-browser-13cac5943e7a84084e2e961572f7e8bc026d0c1b.tar.lz tangerine-wallet-browser-13cac5943e7a84084e2e961572f7e8bc026d0c1b.tar.xz tangerine-wallet-browser-13cac5943e7a84084e2e961572f7e8bc026d0c1b.tar.zst tangerine-wallet-browser-13cac5943e7a84084e2e961572f7e8bc026d0c1b.zip |
Move transaction list after account panel
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/account-detail.js | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index ec3ca0005..871c0e66c 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -72,20 +72,9 @@ 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'), - ]), - - transactionList(transactions), - ]), + transactionList(transactions), this.exportedAccount(accountDetail), // transaction table |