How can I detect that ng-repeat has finished writing the values into the markup? I have a lot of values and the rendering will take some time.
NG
        <ul >
        <li data-ng-repeat="item in values"> 
           {{item.id}}           
        </li>
    </ul>
 
     
    