Merge pull request #538 in FS/freeswitch from ~STEFAN_YOHANSSON/freeswitch:bugfix/FS-8290-automatically-mark-dedicated-encoder to master

* commit '9b82894f02370576483bc520e0906f99095c2008':
  FS-8290 #resolve [verto_communicator] automatically mark dedicated encoder if out/in bandwith isnt 'Server default'
This commit is contained in:
Ítalo Rossi
2015-10-05 19:53:42 -05:00
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;
}
};
}
]);