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.8.0~519^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=976677de60f5657fe4a5eb1db1568d5f1f4c3a78;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 1994a85196..05b2357bfe 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) {