We are currently working on a project that utilizes the Flexslider plugin (recently acquired by Woo Themes). We have multiple pop ups on this page and we want the slider to
I faced the same issue working with brightcove+flexslider. here is my workaround:
before
pausePlay: true,
pauseText :"Pause",
playText :"Play"
then
video.addEventListener(BCMediaEvent.PLAY, function () {
$('.flex-pauseplay .flex-pause').trigger('click');
});
video.addEventListener(BCMediaEvent.STOP, function () {
$('.flex-pauseplay .flex-play').trigger('click');
});
.flex-pauseplay .flex-play css opacity: 0