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

Allow for 32 LCs and 8 GVARs

This commit is contained in:
Pawel Spychalski (DzikuVx) 2020-07-31 11:53:29 +02:00
parent 6270d101fd
commit 303c4b8d45
11 changed files with 73 additions and 109 deletions

View file

@ -23,11 +23,6 @@ let LogicConditionsCollection = function () {
};
self.open = function () {
if (semver.lt(CONFIG.flightControllerVersion, "2.2.0")) {
return;
}
self.render();
$container.show();
};
@ -61,11 +56,6 @@ let LogicConditionsCollection = function () {
};
self.init = function ($element) {
if (semver.lt(CONFIG.flightControllerVersion, "2.2.0")) {
return;
}
$container = $element;
$container.find('.logic__save').click(self.onSave);