1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

remove or hide setting which disallow disarming on throttle above low

This commit is contained in:
Steffen Windoffer 2018-02-03 17:36:56 +01:00
parent bc7074f7fb
commit 00c9723980

View file

@ -628,6 +628,11 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
$('div.cycles').show();
}
if(semver.gte(CONFIG.apiVersion, "1.37.0") || !isExpertModeEnabled()) {
$('input[id="disarmkillswitch"]').prop('checked', true);
$('div.disarm').hide();
}
$('._smallAngle').hide();
if(semver.gte(CONFIG.apiVersion, "1.37.0")) {
$('input[id="configurationSmallAngle"]').val(ARMING_CONFIG.small_angle);