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

Merge pull request #471 from mikeller/fix_unsynched_checkbox

Fixed hiding of unsynched checkbox / field.
This commit is contained in:
Michael Keller 2017-03-20 00:24:40 +13:00 committed by GitHub
commit fbb2fc1ecd

View file

@ -241,15 +241,12 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
$('div.minthrottle').hide();
$('div.maxthrottle').hide();
$('div.mincommand').hide();
$('div.checkboxPwm').hide();
$('div.unsyncedpwmfreq').hide();
$('div.digitalIdlePercent').show();
} else {
$('div.minthrottle').show();
$('div.maxthrottle').show();
$('div.mincommand').show();
$('div.checkboxPwm').show();
$('div.digitalIdlePercent').hide();
}