flickity icon indicating copy to clipboard operation
flickity copied to clipboard

draggable: false yet attempting to drag stops autoPlay

Open jimmyff opened this issue 2 years ago • 0 comments

I have a photo carousel, I want it to be purely decorative so I set draggable: false however when i try to drag it, the autoplay stops.

  var flky2 = new Flickity( '.photos', {
    accessibility: false,
    adaptiveHeight: false,
    imagesLoaded: true,
    autoPlay: 3000,
    cellAlign: 'center',
    cellSelector:'.photo',
    draggable: false,
    freeScroll: false,
    groupCells: false,
    initialIndex: 0,
    pauseAutoPlayOnHover: false,
    percentPosition: true,
    prevNextButtons: false,
    pageDots: false,
    resize: true,
    wrapAround: true,
    lazyLoad: true
  });

jimmyff avatar Mar 24 '23 11:03 jimmyff