Skip to content
This repository has been archived by the owner on Dec 6, 2018. It is now read-only.

Commit

Permalink
Merge pull request #199 from andrebonon/fix_muted_FF_Safari
Browse files Browse the repository at this point in the history
Fix mute function in FF and Safari
  • Loading branch information
lincolnfrog authored Jun 22, 2017
2 parents a3a9306 + 925b0eb commit 7144d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/embed/adaptive-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function AdaptivePlayer(params) {

// Not muted by default.
if (params.muted === true) {
this.video.setAttribute('muted', true);
this.video.muted = params.muted;
}

// For FF, make sure we enable preload.
Expand Down

0 comments on commit 7144d2f

Please sign in to comment.