An Angular error is popping up in Firefox but not in Chrome or IE. The specific error message is:
Error: Argument 'myControllerName' is not a function, got undefined
. When tracing the stack, it seems to be originating from the $broadcast
function being called from updateRoute
, etc.
Here's the setup:
- Angular v1.1.5
- Firefox 40.0.3 Encounters error
- Chrome 45.0.2454.93 m, or IE 11.0.9600 No issues
I've searched through similar solutions on Stack Overflow for the "Argument is not a function, got undefined" error, but couldn't find a resolution for this specific problem. Additionally, I've checked the Angular changelog and did not find any mentions of Firefox-specific fixes for the next version.
Could there be discrepancies between Firefox and other browsers, known bugs in this version of Angular, or any other potential causes for this error?