bqworks / slider-pro

A modular, responsive and touch-enabled jQuery slider plugin that enables you to create elegant and professionally looking sliders.
MIT License
876 stars 387 forks source link

I want to stop drag of thumbnail! #294

Open edmitton opened 5 years ago

edmitton commented 5 years ago

Hi. I wanna stop drag of thumbnail. I tried

thumbnailTouchSwipe: false

But did'n work slide navigation. What should I do?

Please...

davidghi commented 5 years ago

Hi. Sorry for the late reply! That is a bug and I will try to implement a fix. For now you can use this code:

jQuery( '.slider-pro' ).data('sliderPro')._onThumbnailTouchMove = function() {
    return;
}

You also need to leave the thumbnailTouchSwipe option enabled.

Best, David