diff options
author | hahnmichaelf <hahn.michael.f@gmail.com> | 2018-08-14 01:21:18 +0800 |
---|---|---|
committer | hahnmichaelf <hahn.michael.f@gmail.com> | 2018-08-14 01:21:18 +0800 |
commit | e19eb7bc035670d0f05e34840e6565bc1f907de3 (patch) | |
tree | 38c971c706c7f6aabbf0c9580c272d567f952a54 /app | |
parent | 4808ce25ebdc566a13acbb9cb1c6815368b7c4a1 (diff) | |
download | tangerine-wallet-browser-e19eb7bc035670d0f05e34840e6565bc1f907de3.tar tangerine-wallet-browser-e19eb7bc035670d0f05e34840e6565bc1f907de3.tar.gz tangerine-wallet-browser-e19eb7bc035670d0f05e34840e6565bc1f907de3.tar.bz2 tangerine-wallet-browser-e19eb7bc035670d0f05e34840e6565bc1f907de3.tar.lz tangerine-wallet-browser-e19eb7bc035670d0f05e34840e6565bc1f907de3.tar.xz tangerine-wallet-browser-e19eb7bc035670d0f05e34840e6565bc1f907de3.tar.zst tangerine-wallet-browser-e19eb7bc035670d0f05e34840e6565bc1f907de3.zip |
additional lint-test fix
Diffstat (limited to 'app')
-rw-r--r-- | app/scripts/phishing-detect.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/phishing-detect.js b/app/scripts/phishing-detect.js index a66cdb5ac..4168b6618 100644 --- a/app/scripts/phishing-detect.js +++ b/app/scripts/phishing-detect.js @@ -1,5 +1,5 @@ window.onload = function() { 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>' + 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>' } } |