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

Folding in interpolation

This commit is contained in:
Sean M 2018-08-07 22:08:17 -04:00
parent 3498943db4
commit 763b279f8f
4 changed files with 45 additions and 38 deletions

View file

@ -585,9 +585,9 @@ TABS.receiver.cleanup = function (callback) {
TABS.receiver.updateRcInterpolationParameters = function () {
if (semver.gte(CONFIG.apiVersion, "1.20.0")) {
if ($('select[name="rcInterpolation-select"]').val() === '3') {
$('.tab-receiver .rcInterpolationInterval').show();
$('.tab-receiver .rc-interpolation-manual').show();
} else {
$('.tab-receiver .rcInterpolationInterval').hide();
$('.tab-receiver .rc-interpolation-manual').hide();
}
}
};