|
|
|
@ -101,7 +101,7 @@ AccountDetailScreen.prototype.render = function() { |
|
|
|
|
|
|
|
|
|
// What is shown when not editing + edit text:
|
|
|
|
|
h('label.editing-label',[h('.edit-text','edit')]), |
|
|
|
|
h('h2.font-medium.color-forest', {title: 'edit'}, identity && identity.name) |
|
|
|
|
h('h2.font-medium.color-forest', {name: 'edit'}, identity && identity.name), |
|
|
|
|
]), |
|
|
|
|
]), |
|
|
|
|
|
|
|
|
@ -118,16 +118,19 @@ AccountDetailScreen.prototype.render = function() { |
|
|
|
|
}, |
|
|
|
|
}, addressSummary(selected)), |
|
|
|
|
|
|
|
|
|
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', { |
|
|
|
|
onClick: () => this.requestAccountExport(selected), |
|
|
|
|
}), |
|
|
|
|
|
|
|
|
|
h('i.fa.fa-qrcode.fa-md.cursor-disabled.color-orange', { |
|
|
|
|
onClick: () => console.warn('QRCode not implented...'), |
|
|
|
|
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', { |
|
|
|
|
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)), |
|
|
|
|
style:{ |
|
|
|
|
marginLeft: '64px', |
|
|
|
|
}, |
|
|
|
|
}), |
|
|
|
|
|
|
|
|
|
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', { |
|
|
|
|
onClick: () => copyToClipboard(ethUtil.toChecksumAddress(selected)), |
|
|
|
|
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', { |
|
|
|
|
onClick: () => this.requestAccountExport(selected), |
|
|
|
|
style:{ |
|
|
|
|
position: 'relative', |
|
|
|
|
right: '32px', |
|
|
|
|
}, |
|
|
|
|
}), |
|
|
|
|
|
|
|
|
|
]), |
|
|
|
|