aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/contentscript.js
diff options
context:
space:
mode:
authorhahnmichaelf <hahn.michael.f@gmail.com>2018-08-14 01:16:37 +0800
committerhahnmichaelf <hahn.michael.f@gmail.com>2018-08-14 01:16:37 +0800
commit4808ce25ebdc566a13acbb9cb1c6815368b7c4a1 (patch)
tree57850ba53c6a6bedb6c3dadd942bcc7c17e51246 /app/scripts/contentscript.js
parente454a5e0e883c3653c19e894e2757b79555263d5 (diff)
downloadtangerine-wallet-browser-4808ce25ebdc566a13acbb9cb1c6815368b7c4a1.tar
tangerine-wallet-browser-4808ce25ebdc566a13acbb9cb1c6815368b7c4a1.tar.gz
tangerine-wallet-browser-4808ce25ebdc566a13acbb9cb1c6815368b7c4a1.tar.bz2
tangerine-wallet-browser-4808ce25ebdc566a13acbb9cb1c6815368b7c4a1.tar.lz
tangerine-wallet-browser-4808ce25ebdc566a13acbb9cb1c6815368b7c4a1.tar.xz
tangerine-wallet-browser-4808ce25ebdc566a13acbb9cb1c6815368b7c4a1.tar.zst
tangerine-wallet-browser-4808ce25ebdc566a13acbb9cb1c6815368b7c4a1.zip
fix for lint-test
Diffstat (limited to 'app/scripts/contentscript.js')
-rw-r--r--app/scripts/contentscript.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/contentscript.js b/app/scripts/contentscript.js
index 60ef97e5e..b6d5cfe9e 100644
--- a/app/scripts/contentscript.js
+++ b/app/scripts/contentscript.js
@@ -199,5 +199,5 @@ function blacklistedDomainCheck () {
function redirectToPhishingWarning () {
console.log('MetaMask - routing to Phishing Warning component')
const extensionURL = extension.runtime.getURL('phishing.html')
- window.location.href = extensionURL + "#" + window.location.hostname
+ window.location.href = extensionURL + '#' + window.location.hostname
}