workarounds for setting volume. hopefully fixes issue #17

pull/43/head
Philipp Hancke 11 years ago
parent 778e6e0137
commit 40af39a8dc
  1. 9
      app.js

@ -99,7 +99,6 @@ function doJoin() {
$(document).bind('mediaready.jingle', function (event, stream) {
connection.jingle.localStream = stream;
RTC.attachMediaStream($('#localVideo'), stream);
document.getElementById('localVideo').muted = true;
document.getElementById('localVideo').autoplay = true;
document.getElementById('localVideo').volume = 0;
@ -107,7 +106,13 @@ $(document).bind('mediaready.jingle', function (event, stream) {
updateLargeVideo(localVideoSrc, true, 0);
$('#localVideo').click(function () {
updateLargeVideo($(this).attr('src'), true, 1);
updateLargeVideo($(this).attr('src'), true, 0);
$('video').each(function (idx, el) {
if (el.id.indexOf('mixedmslabel') != -1) {
el.volume = 0;
el.volume = 1;
}
});
});
doJoin();

Loading…
Cancel
Save