aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/phishing-detect.js
diff options
context:
space:
mode:
authorhahnmichaelf <hahn.michael.f@gmail.com>2018-08-14 01:21:18 +0800
committerhahnmichaelf <hahn.michael.f@gmail.com>2018-08-14 01:21:18 +0800
commite19eb7bc035670d0f05e34840e6565bc1f907de3 (patch)
tree38c971c706c7f6aabbf0c9580c272d567f952a54 /app/scripts/phishing-detect.js
parent4808ce25ebdc566a13acbb9cb1c6815368b7c4a1 (diff)
downloadtangerine-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/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 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>'
}
}