diff options
author | Frankie <email": null> | 2016-06-08 04:50:46 +0800 |
---|---|---|
committer | Frankie <frankie.pangilinan@consensys.net> | 2016-06-09 03:40:42 +0800 |
commit | 702dc3b21630846afda7688dd6cb0cad376ef50f (patch) | |
tree | e8da15843dd5863d9e54849840c3f0de70e3af42 /ui/app/info.js | |
parent | 2c2fcd60bfc28c7e500c3cb5e7243cafb8f388e5 (diff) | |
download | tangerine-wallet-browser-702dc3b21630846afda7688dd6cb0cad376ef50f.tar tangerine-wallet-browser-702dc3b21630846afda7688dd6cb0cad376ef50f.tar.gz tangerine-wallet-browser-702dc3b21630846afda7688dd6cb0cad376ef50f.tar.bz2 tangerine-wallet-browser-702dc3b21630846afda7688dd6cb0cad376ef50f.tar.lz tangerine-wallet-browser-702dc3b21630846afda7688dd6cb0cad376ef50f.tar.xz tangerine-wallet-browser-702dc3b21630846afda7688dd6cb0cad376ef50f.tar.zst tangerine-wallet-browser-702dc3b21630846afda7688dd6cb0cad376ef50f.zip |
Add icons to left side of links, as well as the metmask version and styling
Diffstat (limited to 'ui/app/info.js')
-rw-r--r-- | ui/app/info.js | 110 |
1 files changed, 76 insertions, 34 deletions
diff --git a/ui/app/info.js b/ui/app/info.js index 7e6516222..8c43c5aa7 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -18,7 +18,7 @@ function InfoScreen() { InfoScreen.prototype.render = function() { var state = this.props var rpc = state.rpc - + var manifest = chrome.runtime.getManifest(); return ( h('.flex-column.flex-grow', [ @@ -39,50 +39,92 @@ InfoScreen.prototype.render = function() { padding: '20px', } }, [ + //current version number - h('div', [ - h('a', { - href: 'http://slack.metamask.io', - target: '_blank', - onClick(event) { this.navigateTo(event.target.href) }, - }, 'Join the conversation on Slack'), + h('.info.info-gray',[ + h('div','Metamask'), + h('div', { + style: { + marginBottom: '10px', + } + },`Version: ${manifest.version}`), ]), - h('div', [ - h('a', { - href: 'https://metamask.io/', - target: '_blank', - onClick(event) { this.navigateTo(event.target.href) }, - }, 'Visit our web site'), - ]), + h('hr',{ + style: { + margin:'20px 0 ', + width: '7em', + } + }), - h('div', [ - h('a', { - href: 'https://twitter.com/metamask_io', - target: '_blank', - onClick(event) { this.navigateTo(event.target.href) }, - }, 'Follow us on Twitter'), - ]), - h('div', [ - h('a', { - href: 'mailto:hello@metamask.io?subject=Feedback', - target: '_blank', - }, 'Email us any questions or comments!'), - ]), + h('.info',{ + style: { + marginBottom: '20px', + }}, + `For more information on Metamask + you can visit our web site. If you want to + contact us with questions or just + say Hi, you can find us on theise platforms:`), - h('div', [ - h('a', { - href: 'https://github.com/metamask/talk/issues', - target: '_blank', - onClick(event) { this.navigateTo(event.target.href) }, - }, 'Start a thread on Github'), - ]), + h('div',{ + style: { + paddingLeft: '25px', + }}, + [ + h('div', [ + h('a.info', { + href: 'https://metamask.io/', + target: '_blank', + onClick(event) { this.navigateTo(event.target.href) }, + },[ + h('img.icon-size', { + src: manifest.icons[128] + }), + h('.info',{ + style: { + display: 'inherit', + } + },'Visit our web site') + ]) + ]), + h('div.fa.fa-slack', [ + h('a.info', { + href: 'http://slack.metamask.io', + target: '_blank', + onClick(event) { this.navigateTo(event.target.href) }, + }, 'Join the conversation on Slack'), + ]), + + h('div.fa.fa-twitter', [ + h('a.info', { + href: 'https://twitter.com/metamask_io', + target: '_blank', + onClick(event) { this.navigateTo(event.target.href) }, + }, 'Follow us on Twitter'), + ]), + + h('div.fa.fa-envelope', [ + h('a.info', { + href: 'mailto:hello@metamask.io?subject=Feedback', + target: '_blank', + }, 'Email us any questions or comments!'), + ]), + + h('div.fa.fa-github', [ + h('a.info', { + href: 'https://github.com/metamask/talk/issues', + target: '_blank', + onClick(event) { this.navigateTo(event.target.href) }, + }, 'Start a thread on Github'), + ]), + ]), ]), ]), ]) ) + } InfoScreen.prototype.navigateTo = function(url) { |