If you want to send an event between services/directives use broadcast
:
$rootScope.$broadcast('buttonPressedEvent');
And recieve it like this:
$rootScope.$on('buttonPressedEvent', function () {
//do stuff
})
If you want to send an event between services/directives use broadcast
:
$rootScope.$broadcast('buttonPressedEvent');
And recieve it like this:
$rootScope.$on('buttonPressedEvent', function () {
//do stuff
})