From 382e22b0704c12b53cd5166ab00f82e0e881c98b Mon Sep 17 00:00:00 2001 From: Sanjay B Date: Thu, 28 Oct 2021 22:35:59 +0530 Subject: [PATCH] dont set video.muted to true to prevent flash of wrong audio icon when unmuted, refs #32 --- app/static/js/ascroll.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/js/ascroll.js b/app/static/js/ascroll.js index d62bc97..cfe2124 100755 --- a/app/static/js/ascroll.js +++ b/app/static/js/ascroll.js @@ -59,7 +59,7 @@ function updatePlayer(video, frame, currentTime, out, src) { } //video.poster = frame.querySelector('img').src var muted = video.muted - video.muted = true + // video.muted = true video.currentTime = currentTime video.dataset.in = currentTime video.dataset.out = out