Unmute videos by default.
authorBen Sturmfels <ben@sturm.com.au>
Fri, 24 Apr 2020 05:24:33 +0000 (15:24 +1000)
committerBen Sturmfels <ben@sturm.com.au>
Fri, 24 Apr 2020 05:24:33 +0000 (15:24 +1000)
Fixes #5590.

mediagoblin/static/js/change-video-resolution.js

index 0cae2b46942ff03c72d201d065414ee69d9b17a5..bc2dfbb6eabda65eaf6f9a79f942c5021c3d9a78 100644 (file)
@@ -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
+});