mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 01:35:41 +03:00
allow save button to trigger with CAMSTAB
This commit is contained in:
parent
6940bf723c
commit
078d305259
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
<span>xx.xx.xxxx - 0.21</span>
|
||||||
|
<p>
|
||||||
|
- Bugfix for Servo tab save button & CAMSTAB<br />
|
||||||
|
</p>
|
||||||
<span>12.16.2013 - 0.20</span>
|
<span>12.16.2013 - 0.20</span>
|
||||||
<p>
|
<p>
|
||||||
- Minor iprovements & bugfixes<br />
|
- Minor iprovements & bugfixes<br />
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "baseflight - Configurator",
|
"name": "baseflight - Configurator",
|
||||||
"short_name": "baseflight",
|
"short_name": "baseflight",
|
||||||
"description": "Cool crossplatform configurator",
|
"description": "Cool crossplatform configurator",
|
||||||
"version": "0.20",
|
"version": "0.21",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"minimum_chrome_version": "31",
|
"minimum_chrome_version": "31",
|
||||||
|
|
||||||
|
|
|
@ -130,7 +130,8 @@ function tab_initialize_servos() {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('a.update').click(function() {
|
$('a.update').click(function() {
|
||||||
if (supported_models.indexOf(CONFIG.multiType) != -1) {
|
// standard check for supported_models + custom implementation for feature servo_tilt
|
||||||
|
if (supported_models.indexOf(CONFIG.multiType) != -1 || AUX_CONFIG.indexOf('CAMSTAB') > -1 || AUX_CONFIG.indexOf('CAMTRIG') > -1) {
|
||||||
servos_update(true);
|
servos_update(true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue