FS-9552 add to verto communicator toggle deaf status button

This commit is contained in:
Waldyr de Souza
2016-09-26 15:54:57 -03:00
committed by Anthony Minessale
parent 9698187cb8
commit 5941a60266
5 changed files with 32 additions and 1 deletions

View File

@@ -1298,6 +1298,14 @@
this.modCommand("stop", null, "all");
};
$.verto.conf.prototype.deaf = function(memberID) {
this.modCommand("deaf", parseInt(memberID));
};
$.verto.conf.prototype.undeaf = function(memberID) {
this.modCommand("undeaf", parseInt(memberID));
};
$.verto.conf.prototype.record = function(file) {
this.modCommand("recording", null, ["start", file]);
};