Flowplayer Disable Pause
Share
Code snippet to setup flowplayer disable click stop so that the video doesn’t pause when it is clicked.
//stopping default pause action on click
onBeforePause: function()
{
console.log('stopping default pause action on click...');
return false;
},