|
@@ -27,12 +27,6 @@ var eventEmitter = null;
|
27
|
27
|
*/
|
28
|
28
|
var focusedVideoInfo = null;
|
29
|
29
|
|
30
|
|
-/**
|
31
|
|
- * Indicates if we have muted our audio before the conference has started.
|
32
|
|
- * @type {boolean}
|
33
|
|
- */
|
34
|
|
-var preMuted = false;
|
35
|
|
-
|
36
|
30
|
var mutedAudios = {};
|
37
|
31
|
|
38
|
32
|
var flipXLocalVideo = true;
|
|
@@ -779,9 +773,6 @@ var VideoLayout = (function (my) {
|
779
|
773
|
container.id = 'mixedstream';
|
780
|
774
|
container.className = 'videocontainer';
|
781
|
775
|
remotes.appendChild(container);
|
782
|
|
- if(!config.startAudioMuted ||
|
783
|
|
- config.startAudioMuted > APP.members.size())
|
784
|
|
- UIUtil.playSoundNotification('userJoined');
|
785
|
776
|
}
|
786
|
777
|
|
787
|
778
|
if (container) {
|
|
@@ -1302,9 +1293,6 @@ var VideoLayout = (function (my) {
|
1302
|
1293
|
// Remove whole container
|
1303
|
1294
|
container.remove();
|
1304
|
1295
|
|
1305
|
|
- if(!config.startAudioMuted ||
|
1306
|
|
- config.startAudioMuted > APP.members.size())
|
1307
|
|
- UIUtil.playSoundNotification('userLeft');
|
1308
|
1296
|
VideoLayout.resizeThumbnails();
|
1309
|
1297
|
}
|
1310
|
1298
|
|