mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-13 11:29:53 +03:00
Convert to CommonJS Modules - Part 2
This commit is contained in:
parent
91f1699659
commit
38727c54a8
21 changed files with 729 additions and 694 deletions
|
@ -1,6 +1,8 @@
|
|||
/*global $,FC*/
|
||||
'use strict';
|
||||
|
||||
const FC = require('./fc');
|
||||
const { GUI } = require('./../js/gui');
|
||||
|
||||
let LogicCondition = function (enabled, activatorId, operation, operandAType, operandAValue, operandBType, operandBValue, flags) {
|
||||
let self = {};
|
||||
let $row;
|
||||
|
@ -315,4 +317,6 @@ let LogicCondition = function (enabled, activatorId, operation, operandAType, op
|
|||
}
|
||||
|
||||
return self;
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = LogicCondition;
|
Loading…
Add table
Add a link
Reference in a new issue