-
-
Notifications
You must be signed in to change notification settings - Fork 65
Description
I was quite happy to least that V7 is backwards compatible with a V6 iframe child, which makes our upgrade process much easier with little to no chance of breaking our app.
However, when I tried to update the parent to V7 (leaving the child iframe as is as V6), nothing seemed to work. I can see the SYN
handshake, but nothing actually happens after that and the connection is never established. The parent is always initialized first before the child. Our app is really simple too, only a few methods - the upgrade was really simple, update version in package.json and then just change the connectToChild
function to connect
and create the new WindowMessenger
option with allowedOrigins
set as *
so we don't get any potential issues there for testing purposes.
It would be nice to give a full example of this working instead of just having tests for demonstration purposes and reproducability.
Cheers.