Code snippet to setup flowplayer disable click stop so that the video doesn’t pause when it is clicked.
<span>//stopping default pause action on click </span><span>onBeforePause: function() </span><span>{ </span> <span>console.log('stopping default pause action on click...'); </span> <span>return false; </span><span>},</span>
The above is the detailed content of Flowplayer Disable Pause. For more information, please follow other related articles on the PHP Chinese website!