From cfb672182f169f375fe4fba97527100f4015ddd3 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Fri, 6 Jun 2014 15:16:11 -0300 Subject: [PATCH] mute videos --- js/directives.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/directives.js b/js/directives.js index 5e6ad0883..f1f5bbee8 100644 --- a/js/directives.js +++ b/js/directives.js @@ -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); } }