aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2017-06-22 07:20:25 +0800
committerGitHub <noreply@github.com>2017-06-22 07:20:25 +0800
commit2a429253994a0df2aae27234a7ac11c870bdc713 (patch)
tree5e071287037073f8e7302c4d6266d16bd8316721 /ui
parentfa7b8d247bc6a6eada2254fe890aea5995f12c8e (diff)
parenteb7a9d7517777e16f01b45a27a82100ea47bf3aa (diff)
downloadtangerine-wallet-browser-2a429253994a0df2aae27234a7ac11c870bdc713.tar.gz
tangerine-wallet-browser-2a429253994a0df2aae27234a7ac11c870bdc713.tar.zst
tangerine-wallet-browser-2a429253994a0df2aae27234a7ac11c870bdc713.zip
Merge pull request #1655 from MetaMask/fix-malito
Fix broken malito link.
Diffstat (limited to 'ui')
-rw-r--r--ui/app/info.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/ui/app/info.js b/ui/app/info.js
index aa4503b62..89cb7854d 100644
--- a/ui/app/info.js
+++ b/ui/app/info.js
@@ -101,14 +101,12 @@ InfoScreen.prototype.render = function () {
h('a.info', {
href: 'https://github.com/MetaMask/faq',
target: '_blank',
- onClick (event) { this.navigateTo(event.target.href) },
}, 'Need Help? Read our FAQ!'),
]),
h('div', [
h('a', {
href: 'https://metamask.io/',
target: '_blank',
- onClick (event) { this.navigateTo(event.target.href) },
}, [
h('img.icon-size', {
src: 'images/icon-128.png',
@@ -126,7 +124,6 @@ InfoScreen.prototype.render = function () {
h('a.info', {
href: 'http://slack.metamask.io',
target: '_blank',
- onClick (event) { this.navigateTo(event.target.href) },
}, 'Join the conversation on Slack'),
]),
@@ -134,7 +131,6 @@ InfoScreen.prototype.render = function () {
h('a.info', {
href: 'https://twitter.com/metamask_io',
target: '_blank',
- onClick (event) { this.navigateTo(event.target.href) },
}, 'Follow us on Twitter'),
]),
@@ -142,7 +138,7 @@ InfoScreen.prototype.render = function () {
h('a.info', {
target: '_blank',
style: { width: '85vw' },
- onClick () { this.navigateTo('mailto:help@metamask.io?subject=Feedback') },
+ href: 'mailto:help@metamask.io?subject=Feedback',
}, 'Email us!'),
]),
]),