I have followed this post
I have a parent component which contains (and it's called) :
$scope.$broadcast('searchNoFilter');
and a child component which contains (and it's called) :
$scope.$on('searchNoFilter', function(e) {
self.search();
});
The parent triggers that event,
but the child's $on
body isn't called.
What am I missing?