I have an ion-slide-box with 2 ion-slides with each slide bound to some $scope data
<ion-slide-box show-pager="false" auto-play="true" does-continue="true">
<ion-slide>
<h1>{{slideOne.title}}</h1>
</ion-slide>
<ion-slide>
<h1>{{slideTwo.title}}</h1>
</ion-slide>
</ion-slide-box>
If I update slideOne.title on the $scope I see a slide with the new title and also a slide with the old title.
A quick look in developer tools shows there’s actually 4 ion-slides, 2 for each slide, but only one gets bound to the $scope and not its twin also.
I have tried updating the slider Delegate in the controller after updating the $scope data with:
$ionicSlideBoxDelegate.update();
…but still have the same issue.
Am I missing something obvious!?
Thanks