FS-7932 - removed the param from the getMute funciton in verto class, not needed on underlying method

This commit is contained in:
William Henry
2015-08-15 16:28:07 -04:00
committed by Michael Jerris
parent 6b23acc100
commit dd498786eb
2 changed files with 3 additions and 3 deletions

View File

@@ -2161,9 +2161,9 @@
return dialog.rtc.setMute(what);
};
$.verto.dialog.prototype.getMute = function(what) {
$.verto.dialog.prototype.getMute = function() {
var dialog = this;
return dialog.rtc.getMute(what);
return dialog.rtc.getMute();
};
$.verto.dialog.prototype.useStereo = function(on) {