Is there a way to determine when ng-repeat has completed populating the values in the markup? Since I have numerous values, it may take some time for the rendering process.
NG
<ul >
<li data-ng-repeat="item in values">
{{item.id}}
</li>
</ul>