Hi,
I feel I have already asked this question but cannot find any record of such topic from me or anyone else.
During testing, because we run the web app on this local server, when we open a child popup and call into it some function, for instance:
Code: JavaScript
this.myPopup.location.reload();
then we get the infamous error:
Blocked a frame with origin "http://localhost:4200" from accessing a cross-origin frame.With Chrome, we can use the CORS plugin that allows to bypass this error.
Is there anything in EO that we can do to bypass this error too?
I have currently the following setting:
Code: C#
EO.WebEngine.BrowserOptions options = new EO.WebEngine.BrowserOptions();
options.EnableWebSecurity = false;
options.EnableXSSAuditor = false;
Runtime.SetDefaultBrowserOptions(options);
Any suggestion?