Solved
Coding Listeners for a Specific Widget
I know that the code for creating a global listener is the following:
$scope.$on('eventToListenFor', () => {
});But, what additions do I need to make to have it be a listener to a specific widget? Like a button or target?

