If I use AngularJS custom directive, which executes a function, and then use a regular directive like ng-repeat, then which one gets executed first?
for example - in a Select element, if I have use custom multi-select directive and in the same I use an ng-repeat, then which directive gets executed first. Is it in the sequence it is defined?
<select multi-select ng-repeat="x in Xes" multiple></select>