I use "ng-repeat" in angular to render an array of images. for example:
<div ng-cloak class="thumbs" ng-hide="uploadDisplay" ng-repeat="photo in photos">
<img ng-src="{{photo.url}}" ng-title="{{photo.description}}"/>
</div>
but how can i know all the images have finish rendered. Then i can call a third party plugin with:
$('.thumbs a').touchTouch();
Some kinds of plugins like touchTouch, need to initial the static Dom of images in page, but not allowed for dynamic dom. How can i use this kind of plugin here? is there function like onLoad in Angular that will be called after Dom finish render?