diff options
author | simon <simon.rood@adyen.com> | 2018-05-18 21:43:27 +0800 |
---|---|---|
committer | simon <simon.rood@adyen.com> | 2018-05-18 21:43:27 +0800 |
commit | 41502cb38495125bd99efa042f0759a45ac16e6b (patch) | |
tree | fd9c6e4bd70e7082370b7a624c0e4091133fe3cc /app | |
parent | 708422432c634ffbd4c73388f980c43f766b3355 (diff) | |
download | dexon-wallet-41502cb38495125bd99efa042f0759a45ac16e6b.tar.gz dexon-wallet-41502cb38495125bd99efa042f0759a45ac16e6b.tar.zst dexon-wallet-41502cb38495125bd99efa042f0759a45ac16e6b.zip |
Added adyen.com to blacklisted domains because postMessages are blocking card encryption
Diffstat (limited to 'app')
-rw-r--r-- | app/scripts/contentscript.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/scripts/contentscript.js b/app/scripts/contentscript.js index ddf1a943..bf82205c 100644 --- a/app/scripts/contentscript.js +++ b/app/scripts/contentscript.js @@ -166,7 +166,7 @@ function documentElementCheck () { /** * Checks if the current domain is blacklisted - * + * * @returns {boolean} {@code true} if the current domain is blacklisted */ function blacklistedDomainCheck () { @@ -175,6 +175,7 @@ function blacklistedDomainCheck () { 'dropbox.com', 'webbyawards.com', 'cdn.shopify.com/s/javascripts/tricorder/xtld-read-only-frame.html', + 'adyen.com' ] var currentUrl = window.location.href var currentRegex |