1
0
app/assets/js/unmuteAudio.js

11 lines
233 B
JavaScript
Raw Permalink Normal View History

2022-05-18 09:31:00 +00:00
$(document).ready(function(){
var ap = document.getElementById("ap");
var timer = setInterval(()=>{
if(ap.readyState === 4){
ap.muted = false;
clearInterval(timer);
}
},5000);
});