Stop using navigateTo for external link in settings.

This commit is contained in:
Dan 2018-03-27 02:07:31 -02:30
parent dac66b8ee9
commit 7c9fcf26ba
1 changed files with 0 additions and 5 deletions

View File

@ -168,7 +168,6 @@ ConfigScreen.prototype.render = function () {
h('a', {
href: 'http://metamask.helpscoutdocs.com/article/36-resetting-an-account',
target: '_blank',
onClick (event) { this.navigateTo(event.target.href) },
}, 'Read more.'),
]),
h('br'),
@ -260,7 +259,3 @@ function currentProviderDisplay (metamaskState) {
h('span', value),
])
}
ConfigScreen.prototype.navigateTo = function (url) {
global.platform.openWindow({ url })
}