diff options
author | Bruno Barbieri <bruno.barbieri@consensys.net> | 2018-10-10 13:12:43 +0800 |
---|---|---|
committer | kumavis <kumavis@users.noreply.github.com> | 2018-10-10 13:12:43 +0800 |
commit | ccab4ee1a408d93f38765e9b6ef3dc33a18befa9 (patch) | |
tree | 272774935fd6ed3902b7ad49450bedfebf120fa3 /app | |
parent | 1eec21b94525cc8ba07b733c0c7989fa70bff37f (diff) | |
download | dexon-wallet-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar.gz dexon-wallet-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.tar.zst dexon-wallet-ccab4ee1a408d93f38765e9b6ef3dc33a18befa9.zip |
tests - integration - Add Drizzle tests (#5467)
* added drizzle app for testing
* working
* clean up
* clean up script
* make build step required
* add drizzle-tests to .eslintignore
* clean up drizzle run script
* lint
* use truffle unbox
* undo eslintignore changes
* revert change
* dont use global
* dont need this steps
* use the new account flow
* restore package-lock.json
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 6baf868c..0889c831 100644 --- a/app/scripts/phishing-detect.js +++ b/app/scripts/phishing-detect.js @@ -1,4 +1,4 @@ -window.onload = function() { +window.onload = function () { if (window.location.pathname === '/phishing.html') { const {hostname} = parseHash() document.getElementById('esdbLink').innerHTML = '<b>To read more about this scam, navigate to: <a href="https://etherscamdb.info/domain/' + hostname + '"> https://etherscamdb.info/domain/' + hostname + '</a></b>' |