I have two directives. One is an element and another one is an attribute.
<item attr></item>
How do I send data from attribute controller to the element controller. Note that a have a few instances of item, thus I can't use shared service because I don't want to share concrete data to all instances of item
directive, I can't use broadcasting messages for the same reason.
Can anyone suggest a solution?