Thank you for the tip about the built-in debugger feature; that was very helpful!
We are using C# Windows Forms, and our Angular code was doing this:
declare var EOWebBrowser: any;
EOWebBrowser.ExtInvoke(...
When I used the built-in debugger, I was able to see in the console that we are getting the error:
Error: Exception Thrown by ...:: eoWebBrowser is not defined
I couldn't find EOWebBrowser related to extInvoke in the EO documentation, so I'm unsure where we obtained that from?
https://www.essentialobjects.com/doc/webbrowser/advanced/jsext.aspx I changed our code to the following to match what I see in the EO documentation which fixed the problem for us.
declare var eoapi: any;
eoapi.extInvoke(...
Thanks!
Greg