nifty-wallet/app/scripts/phishing-detect.js

6 lines
359 B
JavaScript
Raw Normal View History

2018-08-12 15:57:58 -07:00
window.onload = function() {
2018-08-13 10:16:37 -07:00
if (window.location.pathname === '/phishing.html') {
document.getElementById("esdbLink").innerHTML = '<b>To read more about this scam, navigate to: <a href="https://etherscamdb.info/domain/' + window.location.hash.substring(1) + '"> https://etherscamdb.info/domain/' + window.location.hash.substring(1) + '</a></b>'
2018-08-12 15:57:58 -07:00
}
}