From ef743499cb93dc8360be20db03c4ab0676aa57bb Mon Sep 17 00:00:00 2001 From: Frankie Date: Fri, 24 Jun 2016 17:54:09 -0700 Subject: Fix for the mailto link --- ui/app/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui') diff --git a/ui/app/info.js b/ui/app/info.js index 32b5a22e8..a473f5921 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -97,9 +97,9 @@ InfoScreen.prototype.render = function () { h('div.fa.fa-envelope', [ h('a.info', { - href: 'mailto:hello@metamask.io?subject=Feedback', target: '_blank', style: { width: '85vw' }, + onClick () { chrome.tabs.create({url: 'mailto:help@metamask.io?subject=Feedback'}) }, }, 'Email us any questions or comments!'), ]), -- cgit