Recently, I started a new AngularJS project and successfully set it up. The installation of angular
and angular-resource
using bower
went smoothly. However, upon installing another service that I have used previously - https://github.com/Fundoo-Solutions/angularjs-modal-service, injecting the module resulted in the following error:
Uncaught object
The error seems to be linked to the return statement within this AngularJS function:
function minErr(module) {
// Function content here...
}
My understanding is that it's indicating an issue with the Error
component.
Could this be due to a missing module or something else?