mihnsen / ui-carousel

A simple, lightweight module for carousel in your AngularJS app, Inspired from slick carousel.
http://mihnsen.github.io/ui-carousel/
MIT License
77 stars 67 forks source link

how disable autoscroll on click dot or arrows #42

Open illuska812 opened 6 years ago

illuska812 commented 6 years ago

How can i stop autoscroll when dot or arrow was clicked?

ivanferrer commented 6 years ago

try doing so:

<ui-carousel on-after-change="singleAfter(currentSlide)" 
 autoplay="condition">

$scope.sigleAfter = function(current) {
    if (current == 1) {
         $scope.condition = false;
   }
}