You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 23, 2019. It is now read-only.
When the iframe is being loaded, Chrome and Firefox, IE all throw exceptions: unexpected token ILLEGAL
This is happening due to using numerical ID as function name prefix.
// Register a uniquely-named load event callback for this frame.
ExternalInterface.addCallback(_frameId + "_load", handleFrameLoad);
it results in illegal javascript function name
"0_load" "1_load" "2_load" ... etc.
thus preveting loading function from execution.
Hope this could be fixed.
Thanks: )
The text was updated successfully, but these errors were encountered: