mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Ensure this reference is defined in old-ui info.js (#3450)
This commit is contained in:
parent
5ac330a89e
commit
303801d276
@ -63,7 +63,7 @@ InfoScreen.prototype.render = function () {
|
|||||||
h('a', {
|
h('a', {
|
||||||
href: 'https://metamask.io/privacy.html',
|
href: 'https://metamask.io/privacy.html',
|
||||||
target: '_blank',
|
target: '_blank',
|
||||||
onClick (event) { this.navigateTo(event.target.href) },
|
onClick: (event) => { this.navigateTo(event.target.href) },
|
||||||
}, [
|
}, [
|
||||||
h('div.info', 'Privacy Policy'),
|
h('div.info', 'Privacy Policy'),
|
||||||
]),
|
]),
|
||||||
@ -72,7 +72,7 @@ InfoScreen.prototype.render = function () {
|
|||||||
h('a', {
|
h('a', {
|
||||||
href: 'https://metamask.io/terms.html',
|
href: 'https://metamask.io/terms.html',
|
||||||
target: '_blank',
|
target: '_blank',
|
||||||
onClick (event) { this.navigateTo(event.target.href) },
|
onClick: (event) => { this.navigateTo(event.target.href) },
|
||||||
}, [
|
}, [
|
||||||
h('div.info', 'Terms of Use'),
|
h('div.info', 'Terms of Use'),
|
||||||
]),
|
]),
|
||||||
@ -81,7 +81,7 @@ InfoScreen.prototype.render = function () {
|
|||||||
h('a', {
|
h('a', {
|
||||||
href: 'https://metamask.io/attributions.html',
|
href: 'https://metamask.io/attributions.html',
|
||||||
target: '_blank',
|
target: '_blank',
|
||||||
onClick (event) { this.navigateTo(event.target.href) },
|
onClick: (event) => { this.navigateTo(event.target.href) },
|
||||||
}, [
|
}, [
|
||||||
h('div.info', 'Attributions'),
|
h('div.info', 'Attributions'),
|
||||||
]),
|
]),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user