Merge pull request #592 from maraoz/add/mute-by-default

mute videos by default
This commit is contained in:
Matias Alejo Garcia 2014-06-06 17:38:53 -03:00
commit 11220c7af8

View file

@ -114,7 +114,7 @@ angular.module('copayApp.directives')
var nick = peer.nick;
element.addClass('video-small');
var muted = controllerUtils.getVideoMutedStatus(peerId);
if (muted) {
if (true || muted) { // mute everyone for now
element.attr("muted", true);
}
}