From 265725c6edd62a7f46a9b9cf5a443cf01f0ff00c Mon Sep 17 00:00:00 2001 From: Frankie Date: Tue, 21 Jun 2016 13:40:02 -0700 Subject: Change the copy to cliboard icon --- ui/app/accounts/account-panel.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'ui') diff --git a/ui/app/accounts/account-panel.js b/ui/app/accounts/account-panel.js index b49f4c098..ddccfa529 100644 --- a/ui/app/accounts/account-panel.js +++ b/ui/app/accounts/account-panel.js @@ -63,12 +63,16 @@ NewComponent.prototype.render = function() { margin: '0 20px', }, }, [ - h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', { + h('img.cursor-pointer.color-orange', { + src: 'images/copy.svg', onClick: (event) => { event.stopPropagation() event.preventDefault() copyToClipboard(ethUtil.toChecksumAddress(identity.address)) - } + }, + style:{ + margin: '0px 5px', + }, }), ]), ]) -- cgit