Hello everybody,
I am having trouble updating an image in a slide-box. Here what my code looks like:
<ion-slide-box show-pager="false" on-slide-changed="slideChanged(index)" does-continue="true" active-slide="currentImg" delegate-handle="image-viewer" >
<ion-slide ng-repeat="image in images">
<div class="card">
<div class="item item-text-wrap">
<a class="item item-thumbnail-left" href="#">
<img ng-src="{{ images[currentImg].img}}">
</a>
</div>
</div>
</ion-slide>
The image is being changed by using the Image Picker plug-in, which is working fine.
I have tried using {{image.img}}, using $ionicSlideBoxDelegate.update(), waiting for the $ionicView.enter event. The only one that worked was changed the image globally, but it this way, the slide animation is not smooth.
Any ideas?
Thank you very much!