diff options
Merge pull request #176 from MetaMask/RestoreAccountDetailBackButton
Put accounts view back on account "back" button?
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | ui/app/account-detail.js | 7 |
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) }, |