Mutes video elements.

pull/404/head
Boris Grozev 9 years ago
parent 7abe02d756
commit a2ad7b8f53
  1. 3
      modules/UI/videolayout/SmallVideo.js

@ -109,6 +109,9 @@ SmallVideo.createStreamElement = function (stream) {
var element = isVideo ? document.createElement('video')
: document.createElement('audio');
if (isVideo) {
element.setAttribute("muted", "true");
}
if (!RTCBrowserType.isIExplorer()) {
element.autoplay = true;

Loading…
Cancel
Save