When an Angular directive contains an ngRepeat element, the ngRepeat execution appears to to occur after the containing directive's link execution.
Is there a mechanism ($watch, $observe, etc) that I can use to wire up a response after the ngRepeat execution?
Here's an example of the behavior: http://plnkr.co/edit/yBiSvveeSissU7Rik6Kp?p=preview
I want to operate in a state in the directive where the inputs are available.
My primary goal is to alter the elements of ngRepeat from the containing directive.