mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-14 01:49:05 +00:00
FS-8290 #resolve [verto_communicator] automatically mark dedicated encoder if out/in bandwith isnt 'Server default'
FS-8290 [verto_communicator] fix logic FS-8290 [verto_communicator] change Dedicated Encoder input from checkbox to hidden
This commit is contained in:
@@ -34,6 +34,14 @@
|
||||
window.location.reload();
|
||||
};
|
||||
};
|
||||
|
||||
$scope.checkUseDedRemoteEncoder = function(option) {
|
||||
if ($scope.mydata.incomingBandwidth != 'default' || $scope.mydata.outgoingBandwidth != 'default') {
|
||||
$scope.mydata.useDedenc = true;
|
||||
} else {
|
||||
$scope.mydata.useDedenc = false;
|
||||
}
|
||||
};
|
||||
}
|
||||
]);
|
||||
|
||||
|
Reference in New Issue
Block a user