mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add explanation of account resetting
This commit is contained in:
parent
4f61029177
commit
86d56419f4
@ -150,6 +150,22 @@ ConfigScreen.prototype.render = function () {
|
|||||||
marginTop: '20px',
|
marginTop: '20px',
|
||||||
},
|
},
|
||||||
}, [
|
}, [
|
||||||
|
|
||||||
|
h('p', {
|
||||||
|
style: {
|
||||||
|
fontFamily: 'Montserrat Light',
|
||||||
|
fontSize: '13px',
|
||||||
|
},
|
||||||
|
}, [
|
||||||
|
'Resetting is for developer use only. ',
|
||||||
|
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'),
|
||||||
|
|
||||||
h('button', {
|
h('button', {
|
||||||
style: {
|
style: {
|
||||||
alignSelf: 'center',
|
alignSelf: 'center',
|
||||||
@ -237,3 +253,7 @@ function currentProviderDisplay (metamaskState) {
|
|||||||
h('span', value),
|
h('span', value),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ConfigScreen.prototype.navigateTo = function (url) {
|
||||||
|
global.platform.openWindow({ url })
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user