Ion-slide-page and ng-repeat does not work properly

Hi all,

<ion-slides options="options" slider="slider">
   <ion-slide-page ng-repeat="user in users">
      <img src="anUrl.png" />
   </ion-slide-page>
</ion-slides>
 $scope.options = {
    autoplay: 1500
  };

Is not working.

But if I remove the ng-repeat, autoplay works!

My question: how to solve this? What am I doing wrong here?

having same issue now any updates ?

okay this is how i solved it:


    $timeout(function(){
        $scope.slider.update();
        $scope.slider.slideTo(index); //this is to go to the slide when the slider is initiated 
      },100);