workarounds for setting volume. hopefully fixes issue #17

This commit is contained in:
Philipp Hancke 2014-01-28 11:55:10 +01:00
parent 778e6e0137
commit 40af39a8dc
1 changed files with 7 additions and 2 deletions

9
app.js
View File

@ -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();