diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-06 06:48:15 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-06 06:48:15 +0800 |
commit | 3e2bd1988180d058c3637f84e47a2382cdb5513c (patch) | |
tree | 059a9eecd3f6c0330326d90ad9fa4159c3895ddf /ui | |
parent | e647337a8a34d8fb4b5a8081888ec32ce5fd27a0 (diff) | |
parent | 32c799a1359a0d558fec257c5e1bbd0e31d086f6 (diff) | |
download | tangerine-wallet-browser-3e2bd1988180d058c3637f84e47a2382cdb5513c.tar.gz tangerine-wallet-browser-3e2bd1988180d058c3637f84e47a2382cdb5513c.tar.zst tangerine-wallet-browser-3e2bd1988180d058c3637f84e47a2382cdb5513c.zip |
Merge branch 'master' into readd-loose
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/pending-msg.js | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/ui/app/components/pending-msg.js b/ui/app/components/pending-msg.js index b7133cda8..834719c53 100644 --- a/ui/app/components/pending-msg.js +++ b/ui/app/components/pending-msg.js @@ -35,10 +35,21 @@ PendingMsg.prototype.render = function () { style: { margin: '10px', }, - }, `Signing this message can have + }, [ + `Signing this message can have dangerous side effects. Only sign messages from sites you fully trust with your entire account. - This dangerous method will be removed in a future version.`), + This dangerous method will be removed in a future version. `, + h('a', { + href: 'https://medium.com/metamask/the-new-secure-way-to-sign-data-in-your-browser-6af9dd2a1527', + style: { color: 'rgb(247, 134, 28)' }, + onClick: (event) => { + event.preventDefault() + const url = 'https://medium.com/metamask/the-new-secure-way-to-sign-data-in-your-browser-6af9dd2a1527' + global.platform.openWindow({ url }) + }, + }, 'Read more here.'), + ]), // message details h(PendingTxDetails, state), |