
disable pause when click on screen
I used follow codes to disable click on screen as Ethan mentioned on bellow thread, but still got paused after click on screen.
I'm using Jwplayer 7.0.1.
Am I right?
http://support.jwplayer.com/customer/portal/questions/6562608-how-to-disable-pause-completely-
var playerInstance = jwplayer("videoarea");
playerInstance.setup({
...
});
playerInstance.on('displayClick', function () {
return false;
});