How do I set mute to false permanently?
Using the configure parameter mute:false only causes the player to start muted. The user can still hit the mute button and the audio turns on.
I've also tried using the mute event to turn mute back off:
jwPlayer.on('mute', function () {
jwPlayer.setMute(true);
}
But this causes a race condition where the .setMute triggers the .on('mute', ) and it goes on and on.
↧