Resume flexslider after touch/swipe
flexslider, jquery
Solution
UPDATE FOR FLEXISLIDER 2
The `resume()` event are no longer exist, the correct solution is using the after callback and use the event `after` in the initialization
$('.flexslider').flexslider(
...
after: function(slider){
slider.pause();
slider.play();
}
);
Problem
Is there any way to resume the auto-playing of a Flexslider slideshow after a touch event? Right now it appears that once I swipe to navigate, the slideshow stops..