Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit b8ae28f

Browse files
committed
Fix bug in HashTransport that would override the sanitized channel and remote properties
1 parent 0f183dc commit b8ae28f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Core.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -750,8 +750,6 @@ function prepareTransportStack(config){
750750
}
751751
else {
752752
apply(config, {
753-
channel: query.xdm_c,
754-
remote: query.xdm_e,
755753
useParent: !undef(query.xdm_pa),
756754
usePolling: !undef(query.xdm_po),
757755
useResize: config.useParent ? false : config.useResize

src/stack/PostMessageTransport.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ easyXDM.stack.PostMessageTransport = function(config){
106106
pub.up.callback(true);
107107
}, 0);
108108
}
109-
};
109+
}
110110

111111
return (pub = {
112112
outgoing: function(message, domain, fn){

0 commit comments

Comments
 (0)