1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-20 14:55:15 +03:00

Update max degree

This commit is contained in:
Sean M 2018-10-13 10:48:10 -04:00
parent e8400ffaf5
commit 33c2899e3d

View file

@ -196,6 +196,12 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
load_config(); load_config();
function process_html() { function process_html() {
if (semver.gte(CONFIG.apiVersion, "1.41.0")) {
$('input[name="fpvCamAngleDegrees"]').attr({
"max" : 90
});
}
self.analyticsChanges = {}; self.analyticsChanges = {};
var mixer_list_e = $('select.mixerList'); var mixer_list_e = $('select.mixerList');