1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-16 04:45:18 +03:00

Merge remote-tracking branch 'origin/master' into sh_mixer_profile

This commit is contained in:
shota 2023-10-24 19:22:38 +09:00
commit 0a9e1693a4
50 changed files with 16999 additions and 16433 deletions

View file

@ -41,7 +41,8 @@ var GUI_control = function () {
'advanced_tuning',
'mission_control',
'mixer',
'programming'
'programming',
'ez_tune'
];
this.allowedTabs = this.defaultAllowedTabsWhenDisconnected;
@ -456,6 +457,7 @@ GUI_control.prototype.sliderize = function ($input, value, min, max) {
}
$input.val(val);
$input.trigger('updated');
});
$input.on('change', function() {
@ -474,6 +476,7 @@ GUI_control.prototype.sliderize = function ($input, value, min, max) {
}
$range.val(newVal);
$input.trigger('updated');
});
$input.trigger('change');