https://github.com/woothemes/FlexSlider/issues/351
It seems that a lot is happening to him.
I use Chrome in the first place, and I did it no matter what on this topic:
http://www.templatemonster.com/demo/42317.html
FlexSlider version he said: jQuery FlexSlider v1.8
But I found a fix for it:
http://wordpress.org/support/topic/chrome-bug-with-flexslider-plugin
The end of the topic, the guy sends a link to another site that he fixed! I posted the following lines below:
Line 34 in jquery.flexslider.js
slider.eventType = ('ontouchstart' in document.documentElement) ? 'touchstart' : 'click';
I replaced it with two lines:
slider.touch = (( "ontouchstart" in window ) || ( window.navigator.msPointerEnabled ) || window.DocumentTouch && document instanceof DocumentTouch) && slider.vars.touch; slider.eventType = "click touchend MSPointerUp";
Hope this helps.
source share