From a9aae9a059c94e055caebbd6aa3b4f09be438171 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Fri, 24 Apr 2020 15:24:33 +1000 Subject: [PATCH] Unmute videos by default. Fixes #5590. --- mediagoblin/static/js/change-video-resolution.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mediagoblin/static/js/change-video-resolution.js b/mediagoblin/static/js/change-video-resolution.js index 0cae2b46..bc2dfbb6 100644 --- a/mediagoblin/static/js/change-video-resolution.js +++ b/mediagoblin/static/js/change-video-resolution.js @@ -5,7 +5,7 @@ $(document).ready(function() // fire up the plugin glplayer = videojs('video_1', { controls: true, - muted: true, + muted: false, height: 400, width: 700, plugins: { @@ -24,4 +24,4 @@ $(document).ready(function() }) }) -}); \ No newline at end of file +}); -- 2.25.1