From: Tiago Lisboa Date: Wed, 10 May 2017 00:03:25 +0000 (-0300) Subject: FS-8941: [verto_communicator] Add No Microphone label to audio devices X-Git-Tag: v1.6.18~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79241d13a3ae16b8cfeb562c734df74c1bbbb391;p=thirdparty%2Ffreeswitch.git FS-8941: [verto_communicator] Add No Microphone label to audio devices If no microphone was detected it was impossible to open a call. So, add a No Microphone label, just like the No Camera, with id:none, wich allow to enter a call with microphone disabled. --- diff --git a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js index 0b860be788..7783750a86 100644 --- a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js +++ b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js @@ -263,7 +263,10 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora id: 'screen', label: 'Screen' }]; - data.audioDevices = []; + data.audioDevices = [{ + id: 'none', + label: 'No Microphone' + }]; data.speakerDevices = []; if(!storage.data.selectedShare) {