Open exophunk opened 6 years ago
The plugin is breaking when running in IE11. You can try it with your example page aswell.
Error is: "Invalid calling object"...
I just bumped into this problem and solved it by replacing Common.isString(dependency) with typeof dependency === 'string'
Common.isString(dependency)
typeof dependency === 'string'
https://github.com/liabru/matter-js/blob/2ec247b7af1c6b5da6ee05c73274ed5822c73503/src/core/Plugin.js#L242-L244
The plugin is breaking when running in IE11. You can try it with your example page aswell.
Error is: "Invalid calling object"...