aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-11-29 03:14:36 +0800
committerGitHub <noreply@github.com>2018-11-29 03:14:36 +0800
commit67d9f445bd9c03068b63dbe0b8a6b6606fd0d880 (patch)
tree8205a6f14f4c95a630625d5c1d9574350b039115 /app
parentd59ac281944b19e27f899edd2c90c2377ba83853 (diff)
parentac1b756bd01324682114dd96bfd0c1d4195225a8 (diff)
downloadtangerine-wallet-browser-67d9f445bd9c03068b63dbe0b8a6b6606fd0d880.tar.gz
tangerine-wallet-browser-67d9f445bd9c03068b63dbe0b8a6b6606fd0d880.tar.zst
tangerine-wallet-browser-67d9f445bd9c03068b63dbe0b8a6b6606fd0d880.zip
Merge pull request #5848 from MetaMask/Less-Certain-Language
Soften accusatory language on phishing warning
Diffstat (limited to 'app')
-rw-r--r--app/scripts/phishing-detect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/phishing-detect.js b/app/scripts/phishing-detect.js
index 0889c831e..03fa83994 100644
--- a/app/scripts/phishing-detect.js
+++ b/app/scripts/phishing-detect.js
@@ -1,7 +1,7 @@
window.onload = function () {
if (window.location.pathname === '/phishing.html') {
const {hostname} = parseHash()
- document.getElementById('esdbLink').innerHTML = '<b>To read more about this scam, navigate to: <a href="https://etherscamdb.info/domain/' + hostname + '"> https://etherscamdb.info/domain/' + hostname + '</a></b>'
+ document.getElementById('esdbLink').innerHTML = '<b>To read more about this site and why it was blocked, navigate to: <a href="https://etherscamdb.info/domain/' + hostname + '"> https://etherscamdb.info/domain/' + hostname + '</a></b>'
}
}