I load a list of images in a list . the positions of the are wrong because the image loading time
<ion-list class="timeLineList">
<ion-item collection-repeat="item in items" ng-click="getDetail(item.id)" >
<!-- ... -->
<img ng-src="{{item.customer.photoUrl}}">
<!-- ... -->
</ion-item>
</ion-list>
I need to refresh the page once directives and images are fully charged.
I look for a solution like $(DOM)trigger("create") in jqueryMobile.