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
angular('myModule').controller('myController', function () {});
angular('myModule').controller('myController');
Second line throws no error, although the controller is overwritten with undefined. The second parameter in angular.Module.controller and angular.Module.filter is not optional and the controller/filter is overwritten.