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.
This commit is contained in:
Tiago Lisboa 2017-05-09 21:03:25 -03:00 committed by Mike Jerris
parent 59f9157ead
commit 79241d13a3

View File

@ -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) {