Browsing post 4 in the following issue alerted me to this issue…
http://drupal.org/node/1348810
The attachment in post #4 shows a JS error - line 62 of flexslider/flexslider_views_slideshow/js/flexslider_views_slideshow.js - console is not defined.
This happens when no developer tools are installed in the browser. Production code shouldn't have console.log()'s active.
Line 62 of …flexslider/flexslider_views_slideshow/js/flexslider_views_slideshow.js
console.log(settings.targetId + " .flexslider");
The other lines should be corrected too
Line 69 & 70…
console.log('pause called');
console.log(options);
Line 77…
console.log('play called');
//Comment out the lines to fix.
It will break in browsers that don't have developer tools installed or enabled.
Comments
Comment #1
minoroffense commentedCommented out the lines and committed.
Thanks,