diff options
Merge branch 'master' of github.com:MetaMask/metamask-plugin
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r-- | ui/app/account-detail.js | 2 |
1 files changed, 2 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', |