Merge pull request #600 in FS/freeswitch from ~JAONZE/freeswitch:bugfix/FS-8550-auto-bandwidth-settings-issues to master
* commit 'accc6206dd3fd355e029837dd7a079b70fea87f6': FS-8550 [verto_communicator] - Now setting testSpeedJoin to false when 'auto' is disabled and changed instruction for closing modal in resetSettings()
This commit is contained in:
commit
98785ebe88
|
@ -47,7 +47,7 @@
|
||||||
if (confirm('Factory Reset Settings?')) {
|
if (confirm('Factory Reset Settings?')) {
|
||||||
storage.factoryReset();
|
storage.factoryReset();
|
||||||
$scope.logout();
|
$scope.logout();
|
||||||
$scope.ok();
|
$modalInstance.close('Ok.');
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -58,6 +58,7 @@
|
||||||
$scope.mydata.outgoingBandwidth = 'default';
|
$scope.mydata.outgoingBandwidth = 'default';
|
||||||
$scope.mydata.incomingBandwidth = 'default';
|
$scope.mydata.incomingBandwidth = 'default';
|
||||||
$scope.mydata.vidQual = 'hd';
|
$scope.mydata.vidQual = 'hd';
|
||||||
|
$scope.mydata.testSpeedJoin = false;
|
||||||
} else {
|
} else {
|
||||||
$scope.mydata.testSpeedJoin = true;
|
$scope.mydata.testSpeedJoin = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue