Fix IE11 wrapper nonce errors
This commit is contained in:
parent
3294f629b0
commit
95cbc544de
2 changed files with 0 additions and 6 deletions
|
@ -90,8 +90,6 @@ class Wrapper
|
|||
# Test nonce security to avoid third-party messages
|
||||
if window.postmessage_nonce_security and message.wrapper_nonce != window.wrapper_nonce
|
||||
@log "Message nonce error:", message.wrapper_nonce, '!=', window.wrapper_nonce
|
||||
@actionNotification({"params": ["error", "Message wrapper_nonce error, please report!"]})
|
||||
window.removeEventListener("message", @onMessageInner)
|
||||
return
|
||||
|
||||
cmd = message.cmd
|
||||
|
|
|
@ -868,10 +868,6 @@ jQuery.extend( jQuery.easing,
|
|||
}
|
||||
if (window.postmessage_nonce_security && message.wrapper_nonce !== window.wrapper_nonce) {
|
||||
this.log("Message nonce error:", message.wrapper_nonce, '!=', window.wrapper_nonce);
|
||||
this.actionNotification({
|
||||
"params": ["error", "Message wrapper_nonce error, please report!"]
|
||||
});
|
||||
window.removeEventListener("message", this.onMessageInner);
|
||||
return;
|
||||
}
|
||||
cmd = message.cmd;
|
||||
|
|
Loading…
Reference in a new issue