VRFS-1848 : Fix JS syntax error

This commit is contained in:
Steven Miers 2015-04-16 16:24:39 -05:00
parent 832cd9bf31
commit f4765d03f9
1 changed files with 4 additions and 1 deletions

View File

@ -88,7 +88,10 @@
videoShared=false;
}
function SessStartVideoSharing(bitrate=0) {
function SessStartVideoSharing(bitrate) {
if (!bitrate || typeof(bitrate)=="undefined") {
bitrate = 0
}
videoShared=true;
}