can't get rootscope working in controller

426 Views Asked by At

so im trying to broadcast a event from a controller to another. but i keep getting this error

my controller look like this.

angular.module('myApp',[]).
   controller('20SettingsController',
     ['$rootscope','$scope', '$http', '$modal', 
     function ( $rootscope, $scope, $http, $modalInstance) 
     {
        $rootscope.broadcast("fireEvents");
     }]);

I Am doing something worng?

as always thanks for your time.

1

There are 1 best solutions below

0
On BEST ANSWER

I think it is just that you misspelled $rootscope,

it should be $rootScope with capital 'S'?

It happens :-)