aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/phishing-detect.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2018-11-29 00:35:03 +0800
committerDan Finlay <dan@danfinlay.com>2018-11-29 00:35:03 +0800
commitac1b756bd01324682114dd96bfd0c1d4195225a8 (patch)
tree5d8b396e65e2845776e38669b05c94436b0f3f49 /app/scripts/phishing-detect.js
parent486f9931c469ac1829b6f433ad3ebdc11821df22 (diff)
downloadtangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar
tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar.gz
tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar.bz2
tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar.lz
tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar.xz
tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar.zst
tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.zip
Soften accusatory language on phishing warning
We don't always know for sure that sites marked as phishers are defiitely scams, and so we should avoid language that makes concrete accusations.
Diffstat (limited to 'app/scripts/phishing-detect.js')
-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>'
}
}