aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/account-detail.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-06 03:14:51 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-06 03:14:51 +0800
commitf92189a7219875cfec142e41eb40dcbb8f649d25 (patch)
tree958afe675d37c3726cb067b0c0fc182efea9ad76 /ui/app/account-detail.js
parent895fa023d1f7a7e7924f5536f334a82d2bda66bf (diff)
downloadtangerine-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.
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r--ui/app/account-detail.js9
1 files changed, 5 insertions, 4 deletions
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)
},