Find error line in AngularJS app Find error line in AngularJS app angularjs angularjs

Find error line in AngularJS app


It'll be easier if you link to the js files that would have caused this error.

From the angular.js source, https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.jsit looks like a problem with instantiating the controller.

Here's the line that's causing assertion failure:

/** * @ngdoc function * @name ng.$controller * @requires $injector * * @param {Function|string} constructor If called with a function then it's considered to be the *    controller constructor function. Otherwise it's considered to be a string which is used *    to retrieve the controller constructor using the following steps: * *    * check if a controller with given name is registered via `$controllerProvider` *    * check if evaluating the string on the current scope returns a constructor *    * check `window[constructor]` on the global `window` object * * @param {Object} locals Injection locals for Controller. * @return {Object} Instance of given controller. * * @description * `$controller` service is responsible for instantiating controllers. * * It's just a simple call to {@link AUTO.$injector $injector}, but extracted into * a service, so that one can override this service with {@link https://gist.github.com/1649788 * BC version}. */return function(constructor, locals) {  if(isString(constructor)) {    var name = constructor;    constructor = controllers.hasOwnProperty(name)        ? controllers[name]        : getter(locals.$scope, name, true) || getter($window, name, true);

======> assertArgFn(constructor, name, true); }

  return $injector.instantiate(constructor, locals);};

It's unable to find the constructor for the controller.