aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-06-28 02:55:05 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-06-28 02:55:05 +0800
commit8c7511e9da6cc9da4c482467ec53208bcb97893e (patch)
tree665fe9b1fb540272f8d8a46cf01545450e87f7c7 /ui
parent36c7ffa585f85179458e3ff874a4e821772b6524 (diff)
downloadtangerine-wallet-browser-8c7511e9da6cc9da4c482467ec53208bcb97893e.tar.gz
tangerine-wallet-browser-8c7511e9da6cc9da4c482467ec53208bcb97893e.tar.zst
tangerine-wallet-browser-8c7511e9da6cc9da4c482467ec53208bcb97893e.zip
Add alt titles to most critical icons
We can change most of these later to a more "elegant" solution, but from the user perspective, having these tooltips is comforting imo.
Diffstat (limited to 'ui')
-rw-r--r--ui/app/account-detail.js2
-rw-r--r--ui/app/accounts/account-list-item.js1
-rw-r--r--ui/app/app.js1
3 files changed, 4 insertions, 0 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 276824459..695a1a3f9 100644
--- a/ui/app/account-detail.js
+++ b/ui/app/account-detail.js
@@ -107,6 +107,7 @@ AccountDetailScreen.prototype.render = function () {
h('img.cursor-pointer.color-orange', {
src: 'images/copy.svg',
+ title: 'Copy Address',
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)),
style: {
margin: '0px 5px',
@@ -115,6 +116,7 @@ AccountDetailScreen.prototype.render = function () {
h('img.cursor-pointer.color-orange', {
src: 'images/key-32.png',
+ title: 'Export Private Key',
onClick: () => this.requestAccountExport(selected),
style: {
margin: '0px 5px',
diff --git a/ui/app/accounts/account-list-item.js b/ui/app/accounts/account-list-item.js
index b42de182e..6bba6e145 100644
--- a/ui/app/accounts/account-list-item.js
+++ b/ui/app/accounts/account-list-item.js
@@ -62,6 +62,7 @@ NewComponent.prototype.render = function () {
},
}, [
h('img.cursor-pointer.color-orange', {
+ title: 'Copy Address',
src: 'images/copy.svg',
onClick: (event) => {
event.stopPropagation()
diff --git a/ui/app/app.js b/ui/app/app.js
index a07118ddb..8a51f968b 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -157,6 +157,7 @@ App.prototype.renderAppBar = function () {
width: '23.5px',
marginRight: '8px',
},
+ title: 'Switch Accounts',
onClick: (event) => {
event.stopPropagation()
this.props.dispatch(actions.showAccountsPage())