aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-05-06 04:12:41 +0800
committerDan Finlay <somniac@me.com>2016-05-06 04:12:41 +0800
commite0a91c6fc915a495443821f5586216fe2a5e655c (patch)
tree0786385f47455344f5e11eb30f49002fc2c2ff47
parent895fa023d1f7a7e7924f5536f334a82d2bda66bf (diff)
parent64b635fc76af108d1e78a31447dc19610c0e8c3e (diff)
downloadtangerine-wallet-browser-e0a91c6fc915a495443821f5586216fe2a5e655c.tar
tangerine-wallet-browser-e0a91c6fc915a495443821f5586216fe2a5e655c.tar.gz
tangerine-wallet-browser-e0a91c6fc915a495443821f5586216fe2a5e655c.tar.bz2
tangerine-wallet-browser-e0a91c6fc915a495443821f5586216fe2a5e655c.tar.lz
tangerine-wallet-browser-e0a91c6fc915a495443821f5586216fe2a5e655c.tar.xz
tangerine-wallet-browser-e0a91c6fc915a495443821f5586216fe2a5e655c.tar.zst
tangerine-wallet-browser-e0a91c6fc915a495443821f5586216fe2a5e655c.zip
Merge pull request #176 from MetaMask/RestoreAccountDetailBackButton
Put accounts view back on account "back" button?
-rw-r--r--CHANGELOG.md1
-rw-r--r--ui/app/account-detail.js7
2 files changed, 4 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..10c33c2bc 100644
--- a/ui/app/account-detail.js
+++ b/ui/app/account-detail.js
@@ -47,6 +47,9 @@ 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: this.navigateToAccounts.bind(this),
+ }),
h('h2.page-subtitle', 'Account Detail'),
]),
@@ -64,10 +67,6 @@ AccountDetailScreen.prototype.render = function() {
}, [
h('button', {
- onClick: this.navigateToAccounts.bind(this),
- }, 'CHANGE ACCT'),
-
- h('button', {
onClick: () => {
copyToClipboard(identity.address)
},