aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-10-05 12:46:33 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-10-05 12:46:33 +0800
commitf7714412e5da4a514d978b3f49404f015a106711 (patch)
treec323ae35ff076369d36c0aaac61cdc4219fe651c /ui
parent9b619787386cd951ebe96555574829b7c632a2c2 (diff)
downloadtangerine-wallet-browser-f7714412e5da4a514d978b3f49404f015a106711.tar
tangerine-wallet-browser-f7714412e5da4a514d978b3f49404f015a106711.tar.gz
tangerine-wallet-browser-f7714412e5da4a514d978b3f49404f015a106711.tar.bz2
tangerine-wallet-browser-f7714412e5da4a514d978b3f49404f015a106711.tar.lz
tangerine-wallet-browser-f7714412e5da4a514d978b3f49404f015a106711.tar.xz
tangerine-wallet-browser-f7714412e5da4a514d978b3f49404f015a106711.tar.zst
tangerine-wallet-browser-f7714412e5da4a514d978b3f49404f015a106711.zip
Add relevant legal links to help page.
Diffstat (limited to 'ui')
-rw-r--r--ui/app/info.js49
1 files changed, 41 insertions, 8 deletions
diff --git a/ui/app/info.js b/ui/app/info.js
index 5c06409bd..f014e53fe 100644
--- a/ui/app/info.js
+++ b/ui/app/info.js
@@ -56,6 +56,41 @@ InfoScreen.prototype.render = function () {
}, `Version: ${manifest.version}`),
]),
+ h('div', {
+ style: {
+ marginBottom: '10px',
+ }},
+ [
+ h('div', [
+ h('a', {
+ href: 'https://metamask.io/privacy.html',
+ target: '_blank',
+ onClick (event) { this.navigateTo(event.target.href) },
+ }, [
+ h('div.info', 'Privacy Policy'),
+ ]),
+ ]),
+ h('div', [
+ h('a', {
+ href: 'https://metamask.io/terms.html',
+ target: '_blank',
+ onClick (event) { this.navigateTo(event.target.href) },
+ }, [
+ h('div.info', 'Terms of Use'),
+ ]),
+ ]),
+ h('div', [
+ h('a', {
+ href: 'https://metamask.io/attributions.html',
+ target: '_blank',
+ onClick (event) { this.navigateTo(event.target.href) },
+ }, [
+ h('div.info', 'Attributions'),
+ ]),
+ ]),
+ ]
+ ),
+
h('hr', {
style: {
margin: '20px 0 ',
@@ -63,12 +98,6 @@ InfoScreen.prototype.render = function () {
},
}),
- h('.info',
- `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 these platforms:`),
-
h('div', {
style: {
paddingLeft: '30px',
@@ -82,6 +111,10 @@ InfoScreen.prototype.render = function () {
}, [
h('img.icon-size', {
src: manifest.icons[128],
+ style: {
+ filter: "grayscale(100%)", /* IE6-9 */
+ WebkitFilter: "grayscale(100%)", /* Microsoft Edge and Firefox 35+ */
+ }
}),
h('div.info', 'Visit our web site'),
]),
@@ -107,7 +140,7 @@ InfoScreen.prototype.render = function () {
target: '_blank',
style: { width: '85vw' },
onClick () { extension.tabs.create({url: 'mailto:help@metamask.io?subject=Feedback'}) },
- }, 'Email us any questions or comments!'),
+ }, 'Email us!'),
]),
h('div.fa.fa-github', [
@@ -115,7 +148,7 @@ InfoScreen.prototype.render = function () {
href: 'https://github.com/metamask/talk/issues',
target: '_blank',
onClick (event) { this.navigateTo(event.target.href) },
- }, 'Start a thread on Github'),
+ }, 'Start a thread on GitHub'),
]),
]),
]),