1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Hide link for phishing-detect page (#5864)

* Soften language on phishing-detect page

* remove quotes
This commit is contained in:
Michael - Blurpesec 2018-12-01 23:15:59 -05:00 committed by Dan Finlay
parent 2645727c0f
commit 7f6928782a

View File

@ -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 site and why it was blocked, 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, <a href="https://etherscamdb.info/domain/' + hostname + '"> please navigate here</a>.</b>'
}
}