I have seen similar questions , But they are dealt by marking the event with defaultPrevented:yes to tell the children not to process the event.Is there any way we can stop the propagation of the event down the scope hierarchy?
My scenario is that the controller broadcasting the event have many child scopes out of which only the first child scope needs the event.So taking performance it to consideration i was trying to stop the event propagation at the first level itself.The scenario is illustrated in this fiddle
Is that possible?