aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-03-07 02:45:40 +0800
committerAlexander Tseung <alextsg@users.noreply.github.com>2018-03-07 02:45:40 +0800
commit303801d2768a264a27a51916e5debf778739ee0c (patch)
tree9e81ba6f04d8ce610ee13ec071f9fdd8ad9f4c34
parent5ac330a89e70dfe4b72a69dc64d5eedeed3e4045 (diff)
downloadtangerine-wallet-browser-303801d2768a264a27a51916e5debf778739ee0c.tar
tangerine-wallet-browser-303801d2768a264a27a51916e5debf778739ee0c.tar.gz
tangerine-wallet-browser-303801d2768a264a27a51916e5debf778739ee0c.tar.bz2
tangerine-wallet-browser-303801d2768a264a27a51916e5debf778739ee0c.tar.lz
tangerine-wallet-browser-303801d2768a264a27a51916e5debf778739ee0c.tar.xz
tangerine-wallet-browser-303801d2768a264a27a51916e5debf778739ee0c.tar.zst
tangerine-wallet-browser-303801d2768a264a27a51916e5debf778739ee0c.zip
Ensure this reference is defined in old-ui info.js (#3450)
-rw-r--r--old-ui/app/info.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/old-ui/app/info.js b/old-ui/app/info.js
index db9f30f23..d79b8a3d2 100644
--- a/old-ui/app/info.js
+++ b/old-ui/app/info.js
@@ -63,7 +63,7 @@ InfoScreen.prototype.render = function () {
h('a', {
href: 'https://metamask.io/privacy.html',
target: '_blank',
- onClick (event) { this.navigateTo(event.target.href) },
+ onClick: (event) => { this.navigateTo(event.target.href) },
}, [
h('div.info', 'Privacy Policy'),
]),
@@ -72,7 +72,7 @@ InfoScreen.prototype.render = function () {
h('a', {
href: 'https://metamask.io/terms.html',
target: '_blank',
- onClick (event) { this.navigateTo(event.target.href) },
+ onClick: (event) => { this.navigateTo(event.target.href) },
}, [
h('div.info', 'Terms of Use'),
]),
@@ -81,7 +81,7 @@ InfoScreen.prototype.render = function () {
h('a', {
href: 'https://metamask.io/attributions.html',
target: '_blank',
- onClick (event) { this.navigateTo(event.target.href) },
+ onClick: (event) => { this.navigateTo(event.target.href) },
}, [
h('div.info', 'Attributions'),
]),