diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-03-07 09:13:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 09:13:57 +0800 |
commit | 6a9ca29244f5e5234b338f93e1b1c1360a5446df (patch) | |
tree | e3f87f1e360648833913dc477d37b6a402223ded /old-ui | |
parent | a4bd7992cd960b105f842e0e34637f2675a6665f (diff) | |
parent | 8e0131cbb52eae9d0fd07ac20d1e39bae99446e1 (diff) | |
download | tangerine-wallet-browser-6a9ca29244f5e5234b338f93e1b1c1360a5446df.tar tangerine-wallet-browser-6a9ca29244f5e5234b338f93e1b1c1360a5446df.tar.gz tangerine-wallet-browser-6a9ca29244f5e5234b338f93e1b1c1360a5446df.tar.bz2 tangerine-wallet-browser-6a9ca29244f5e5234b338f93e1b1c1360a5446df.tar.lz tangerine-wallet-browser-6a9ca29244f5e5234b338f93e1b1c1360a5446df.tar.xz tangerine-wallet-browser-6a9ca29244f5e5234b338f93e1b1c1360a5446df.tar.zst tangerine-wallet-browser-6a9ca29244f5e5234b338f93e1b1c1360a5446df.zip |
Merge branch 'master' into ImportAccountMessageV2
Diffstat (limited to 'old-ui')
-rw-r--r-- | old-ui/app/info.js | 6 | ||||
-rw-r--r-- | old-ui/app/unlock.js | 2 |
2 files changed, 4 insertions, 4 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'), ]), diff --git a/old-ui/app/unlock.js b/old-ui/app/unlock.js index a1f791552..7bf4ad29f 100644 --- a/old-ui/app/unlock.js +++ b/old-ui/app/unlock.js @@ -69,7 +69,7 @@ UnlockScreen.prototype.render = function () { style: { margin: 10, }, - }, 'Unlock'), + }, 'Log In'), ]), h('.flex-row.flex-center.flex-grow', [ |