I want to broadcast event from parent directive to child. But if I use scope.broadcast in parent directive link function, then all children in every "parent" directive receive it.
How it works now: If parent (1) broadcast event, then child (1.1) and (2.1) receive event.
How I want it to work: I want to broadcast event from parent (1) only to child (1.1), not child (2.1).
My directive checked if element is on screen. I want only one directive like that and only this directive should send event to others.
<div>
<div parent> <!-- 1 -->
<div child></div> <!-- 1.1 -->
</div>
<div parent> <!-- 2-->
<div child></div> <!-- 2.1 -->
</div>
</div>
Probable reason - parent directive shares the same scope, that's why your event is propagated to all child directives.
Solution - each directive should define its own scope, which prototypically inherits from parent. (
$root <-- parent <-- child
)Plunker