aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-06-30 05:11:31 +0800
committerDan Finlay <dan@danfinlay.com>2016-06-30 05:11:31 +0800
commit5c57169219596e4637c59dd39c01812a4b1bb746 (patch)
tree8724d1491da42f0311a199647bb3680448261874 /ui/app/accounts
parent441a7eec2899c6553004ced2245d17ef9cc33a51 (diff)
downloadtangerine-wallet-browser-5c57169219596e4637c59dd39c01812a4b1bb746.tar.gz
tangerine-wallet-browser-5c57169219596e4637c59dd39c01812a4b1bb746.tar.zst
tangerine-wallet-browser-5c57169219596e4637c59dd39c01812a4b1bb746.zip
Replace manual copy buttons with new CopyButton component
Diffstat (limited to 'ui/app/accounts')
-rw-r--r--ui/app/accounts/account-list-item.js12
1 files changed, 3 insertions, 9 deletions
diff --git a/ui/app/accounts/account-list-item.js b/ui/app/accounts/account-list-item.js
index 6bba6e145..1010516e2 100644
--- a/ui/app/accounts/account-list-item.js
+++ b/ui/app/accounts/account-list-item.js
@@ -4,7 +4,7 @@ const inherits = require('util').inherits
const ethUtil = require('ethereumjs-util')
const EtherBalance = require('../components/eth-balance')
-const copyToClipboard = require('copy-to-clipboard')
+const CopyButton = require('../components/copyButton')
const Identicon = require('../components/identicon')
module.exports = NewComponent
@@ -61,14 +61,8 @@ NewComponent.prototype.render = function () {
margin: '0 20px',
},
}, [
- h('img.cursor-pointer.color-orange', {
- title: 'Copy Address',
- src: 'images/copy.svg',
- onClick: (event) => {
- event.stopPropagation()
- event.preventDefault()
- copyToClipboard(ethUtil.toChecksumAddress(identity.address))
- },
+ h(CopyButton, {
+ value: ethUtil.toChecksumAddress(identity.address),
}),
]),
])