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
Hi, after updating to 1.3 every module throws the following error: "Uncaught TypeError: Cannot read property 'rangy' of undefined".
The problem is caused by "factory(global.rangy);" Global is undefined.
Seems to me, you forgot to set global in your builder in copyModuleScripts, right? The first function in your factory pattern expects two parameters: factory and global. But only the factory parameter is set.
The text was updated successfully, but these errors were encountered:
Hi, after updating to 1.3 every module throws the following error: "Uncaught TypeError: Cannot read property 'rangy' of undefined".
The problem is caused by "factory(global.rangy);" Global is undefined.
Seems to me, you forgot to set global in your builder in copyModuleScripts, right? The first function in your factory pattern expects two parameters: factory and global. But only the factory parameter is set.
The text was updated successfully, but these errors were encountered: