1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 00:35:20 +03:00

Basic preview of PIDFF

This commit is contained in:
Pawel Spychalski (DzikuVx) 2023-10-08 21:40:21 +02:00
parent b0726bbe8c
commit 851e24031b
4 changed files with 104 additions and 12 deletions

View file

@ -456,6 +456,7 @@ GUI_control.prototype.sliderize = function ($input, value, min, max) {
}
$input.val(val);
$input.trigger('updated');
});
$input.on('change', function() {
@ -474,6 +475,7 @@ GUI_control.prototype.sliderize = function ($input, value, min, max) {
}
$range.val(newVal);
$input.trigger('updated');
});
$input.trigger('change');