diff options
author | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2018-03-07 12:13:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 12:13:53 +0800 |
commit | abe8bc19a8563520f080f3bea28651343cfc1221 (patch) | |
tree | e8664e704f4f42e37d272433c217576be8d1701d /ui/app/accounts | |
parent | 2420ad2477f7b688295a55c038b3473a4516dc52 (diff) | |
parent | 5ebdb215ae37d62bd1757c17b58ce08fb833ff8c (diff) | |
download | tangerine-wallet-browser-abe8bc19a8563520f080f3bea28651343cfc1221.tar tangerine-wallet-browser-abe8bc19a8563520f080f3bea28651343cfc1221.tar.gz tangerine-wallet-browser-abe8bc19a8563520f080f3bea28651343cfc1221.tar.bz2 tangerine-wallet-browser-abe8bc19a8563520f080f3bea28651343cfc1221.tar.lz tangerine-wallet-browser-abe8bc19a8563520f080f3bea28651343cfc1221.tar.xz tangerine-wallet-browser-abe8bc19a8563520f080f3bea28651343cfc1221.tar.zst tangerine-wallet-browser-abe8bc19a8563520f080f3bea28651343cfc1221.zip |
Merge branch 'master' into i18n
Diffstat (limited to 'ui/app/accounts')
-rw-r--r-- | ui/app/accounts/import/index.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/app/accounts/import/index.js b/ui/app/accounts/import/index.js index ac6517424..c1b190e3d 100644 --- a/ui/app/accounts/import/index.js +++ b/ui/app/accounts/import/index.js @@ -36,6 +36,21 @@ AccountImportSubview.prototype.render = function () { return ( h('div.new-account-import-form', [ + h('.new-account-import-disclaimer', [ + h('span', 'Imported accounts will not be associated with your originally created MetaMask account seedphrase. Learn more about imported accounts '), + h('span', { + style: { + cursor: 'pointer', + textDecoration: 'underline', + }, + onClick: () => { + global.platform.openWindow({ + url: 'https://metamask.helpscoutdocs.com/article/17-what-are-loose-accounts', + }) + }, + }, 'here'), + ]), + h('div.new-account-import-form__select-section', [ h('div.new-account-import-form__select-label', 'Select Type'), |