Unmute videos by default.

Fixes #5590.
This commit is contained in:
Ben Sturmfels 2020-04-24 15:24:33 +10:00
parent 100f626551
commit a9aae9a059
No known key found for this signature in database
GPG Key ID: 023C05E2C9C068F0

View File

@ -5,7 +5,7 @@ $(document).ready(function()
// fire up the plugin // fire up the plugin
glplayer = videojs('video_1', { glplayer = videojs('video_1', {
controls: true, controls: true,
muted: true, muted: false,
height: 400, height: 400,
width: 700, width: 700,
plugins: { plugins: {
@ -24,4 +24,4 @@ $(document).ready(function()
}) })
}) })
}); });