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

Hide Accel Features

This commit is contained in:
Asizon 2020-02-22 08:54:41 +01:00
parent 855ab72e03
commit 4455e6733d
2 changed files with 4 additions and 4 deletions

View file

@ -1108,9 +1108,9 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
if(semver.gte(CONFIG.apiVersion, "1.37.0")) {
var checked = $(this).is(':checked');
if (checked) {
$('._smallAngle').show()
$('.accelDisabled').show()
} else {
$('._smallAngle').hide()
$('.accelDisabled').hide()
}
}
});