andy835
Forum Replies Created
-
Thanks for your help. I was able to fix the issue by modifying the timeme.js file so that it uses a global variables instead of module.exports or the define loader.
Is there a way I can get the plugin working without Timeme.js? I’m looking for a Workaround not necessarily a fix.
Can you provide me with the unminified JavaScript files because it’s kind of hard to debug this with minified js?
Forum: Plugins
In reply to: [Genesis Responsive Slider] Next / Previous Buttons Won’t Work…I’ve been having the same problem with my version of Chrome, version 55. I took a look at the code and I think I’ve noticed a problem. On line 28 of jquery.flexslider.js:
slider.eventType = ('ontouchstart' in document.documentElement) ? 'touchstart' : 'click';
It’s setting the eventType for the buttons to “touchstart”, which when clicked with the mouse on Chrome doesn’t trigger the event. I fixed this for my site by replacing it with the following line:
slider.eventType = 'click';