1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix for lint err

This commit is contained in:
Frankie 2016-06-21 15:19:10 -07:00
parent c152f98735
commit ea564e51fc
2 changed files with 7 additions and 13 deletions

View File

@ -130,13 +130,13 @@ AccountDetailScreen.prototype.render = function () {
h('img.cursor-pointer.color-orange', { h('img.cursor-pointer.color-orange', {
src: 'images/key-32.png', src: 'images/key-32.png',
onClick: () => this.requestAccountExport(selected), onClick: () => this.requestAccountExport(selected),
style:{ style: {
margin: "0px 5px", margin: '0px 5px',
width: "20px", width: '20px',
height: "20px", height: '20px',
position: "relative", position: 'relative',
top: "3px", top: '3px',
right: "4px", right: '4px',
}, },
}), }),

View File

@ -67,12 +67,6 @@ NewComponent.prototype.render = function () {
event.preventDefault() event.preventDefault()
copyToClipboard(ethUtil.toChecksumAddress(identity.address)) copyToClipboard(ethUtil.toChecksumAddress(identity.address))
}, },
<<<<<<< HEAD
style:{
margin: '0px 5px',
},
=======
>>>>>>> master
}), }),
]), ]),
]) ])