aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-06-25 02:46:40 +0800
committerGitHub <noreply@github.com>2016-06-25 02:46:40 +0800
commitd3a8f3eebe3605dc4a0895dcbc9ecbc75301fcb5 (patch)
tree92250956e146e3ce0470a600e84031b58d5bf52b /ui/app
parentcbcc0438cb673b57d77afd3aa0a2015e84201453 (diff)
parent02dd1669e7c4fd498b8eead625df6574ba679ed3 (diff)
downloadtangerine-wallet-browser-d3a8f3eebe3605dc4a0895dcbc9ecbc75301fcb5.tar.gz
tangerine-wallet-browser-d3a8f3eebe3605dc4a0895dcbc9ecbc75301fcb5.tar.zst
tangerine-wallet-browser-d3a8f3eebe3605dc4a0895dcbc9ecbc75301fcb5.zip
Merge pull request #320 from MetaMask/i318
send-tx remove account select button
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/css/lib.css4
-rw-r--r--ui/app/send.js8
2 files changed, 7 insertions, 5 deletions
diff --git a/ui/app/css/lib.css b/ui/app/css/lib.css
index f17882b9b..dca73a6e8 100644
--- a/ui/app/css/lib.css
+++ b/ui/app/css/lib.css
@@ -218,3 +218,7 @@ hr.horizontal-line {
display: flex;
align-items: center;
}
+
+.invisible {
+ visibility: hidden;
+} \ No newline at end of file
diff --git a/ui/app/send.js b/ui/app/send.js
index 82c378dd2..4b501a7b5 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -61,7 +61,7 @@ SendTransactionScreen.prototype.render = function () {
},
}, [
- // invisible placeholder for later
+ // back button
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer.color-orange', {
onClick: this.back.bind(this),
}),
@@ -74,10 +74,8 @@ SendTransactionScreen.prototype.render = function () {
}),
]),
- // small accounts nav
- h('i.fa.fa-users.fa-lg.cursor-pointer.color-orange', {
- onClick: this.navigateToAccounts.bind(this),
- }),
+ // invisible place holder
+ h('i.fa.fa-users.fa-lg.invisible'),
]),