FS-8970 - [verto_communicator] Setting 'none' for useSpeak/useMic/useCamera when calling a secondary canvas
This commit is contained in:
parent
9ffd25e1e3
commit
e840bd9a0b
|
@ -89,7 +89,17 @@
|
||||||
|
|
||||||
if (extension.indexOf('-canvas-') != -1) {
|
if (extension.indexOf('-canvas-') != -1) {
|
||||||
$rootScope.watcher = true;
|
$rootScope.watcher = true;
|
||||||
verto.call($rootScope.dialpadNumber, null, { useCamera: false, useMic: false, caller_id_name: null, userVariables: {}, caller_id_number: null, mirrorInput: false });
|
verto.call($rootScope.dialpadNumber, null,
|
||||||
|
{
|
||||||
|
useCamera: "none",
|
||||||
|
useMic: "none",
|
||||||
|
useSpeak: "none",
|
||||||
|
caller_id_name: null,
|
||||||
|
userVariables: {},
|
||||||
|
caller_id_number: null,
|
||||||
|
mirrorInput: false
|
||||||
|
}
|
||||||
|
);
|
||||||
$location.path('/incall');
|
$location.path('/incall');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue