aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-06-28 08:00:12 +0800
committerkumavis <aaron@kumavis.me>2016-06-28 08:00:12 +0800
commit99ca02030a82d3adacc82699885cc03b666806ed (patch)
tree6dccd4eae248d0853c4dd3398115001bf7199270
parentbaba71946859ea8e8d059f1ba4145297097c6dc9 (diff)
parentc41c4f719fe3638ec05594283101c81e2552203e (diff)
downloadtangerine-wallet-browser-99ca02030a82d3adacc82699885cc03b666806ed.tar
tangerine-wallet-browser-99ca02030a82d3adacc82699885cc03b666806ed.tar.gz
tangerine-wallet-browser-99ca02030a82d3adacc82699885cc03b666806ed.tar.bz2
tangerine-wallet-browser-99ca02030a82d3adacc82699885cc03b666806ed.tar.lz
tangerine-wallet-browser-99ca02030a82d3adacc82699885cc03b666806ed.tar.xz
tangerine-wallet-browser-99ca02030a82d3adacc82699885cc03b666806ed.tar.zst
tangerine-wallet-browser-99ca02030a82d3adacc82699885cc03b666806ed.zip
Merge branch 'master' of github.com:MetaMask/metamask-plugin
-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
-rw-r--r--ui/app/css/index.css6
-rw-r--r--ui/app/info.js2
5 files changed, 7 insertions, 5 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())
diff --git a/ui/app/css/index.css b/ui/app/css/index.css
index f0e7dc794..24497a66f 100644
--- a/ui/app/css/index.css
+++ b/ui/app/css/index.css
@@ -228,10 +228,8 @@ app sections
font-size: 1em;
height: 31px;
}
-
-.editable-button{
- position: relative;
- bottom: 2px;
+.editable-label{
+ display: flex;
}
/* Webkit */
.unlock-screen input::-webkit-input-placeholder {
diff --git a/ui/app/info.js b/ui/app/info.js
index 32b5a22e8..a473f5921 100644
--- a/ui/app/info.js
+++ b/ui/app/info.js
@@ -97,9 +97,9 @@ InfoScreen.prototype.render = function () {
h('div.fa.fa-envelope', [
h('a.info', {
- href: 'mailto:hello@metamask.io?subject=Feedback',
target: '_blank',
style: { width: '85vw' },
+ onClick () { chrome.tabs.create({url: 'mailto:help@metamask.io?subject=Feedback'}) },
}, 'Email us any questions or comments!'),
]),