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:
Stefan Yohansson
2015-10-02 17:36:53 -03:00
parent b514c9cd6e
commit 9b82894f02
2 changed files with 16 additions and 6 deletions

View File

@@ -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;
}
};
}
]);