diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-05-06 03:14:51 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-05-06 03:14:51 +0800 |
commit | f92189a7219875cfec142e41eb40dcbb8f649d25 (patch) | |
tree | 958afe675d37c3726cb067b0c0fc182efea9ad76 | |
parent | 895fa023d1f7a7e7924f5536f334a82d2bda66bf (diff) | |
download | tangerine-wallet-browser-f92189a7219875cfec142e41eb40dcbb8f649d25.tar tangerine-wallet-browser-f92189a7219875cfec142e41eb40dcbb8f649d25.tar.gz tangerine-wallet-browser-f92189a7219875cfec142e41eb40dcbb8f649d25.tar.bz2 tangerine-wallet-browser-f92189a7219875cfec142e41eb40dcbb8f649d25.tar.lz tangerine-wallet-browser-f92189a7219875cfec142e41eb40dcbb8f649d25.tar.xz tangerine-wallet-browser-f92189a7219875cfec142e41eb40dcbb8f649d25.tar.zst tangerine-wallet-browser-f92189a7219875cfec142e41eb40dcbb8f649d25.zip |
Restored back button to account detail view.
The `Change Acct` button was confusing multiple users, reverted that bit.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | ui/app/account-detail.js | 9 |
2 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c3c51936e..6165b8789 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Moved account exporting within transitioning subview on the account detail view. - Added buttons to the account export process. - Improved visual appearance of account detail transition where button heights would change. +- Restored back button to account detail view. ## 1.7.0 2016-04-29 diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js index c93eef4fd..0c1b5c72e 100644 --- a/ui/app/account-detail.js +++ b/ui/app/account-detail.js @@ -47,6 +47,11 @@ AccountDetailScreen.prototype.render = function() { // subtitle and nav h('.section-title.flex-row.flex-center', [ + h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', { + onClick: (event) => { + state.dispatch(actions.goHome()) + } + }), h('h2.page-subtitle', 'Account Detail'), ]), @@ -64,10 +69,6 @@ AccountDetailScreen.prototype.render = function() { }, [ h('button', { - onClick: this.navigateToAccounts.bind(this), - }, 'CHANGE ACCT'), - - h('button', { onClick: () => { copyToClipboard(identity.address) }, |