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

Render basic table

This commit is contained in:
Pawel Spychalski (DzikuVx) 2019-03-10 15:14:31 +01:00
parent 3e1e38f6d2
commit 2946fe5c2a
4 changed files with 29 additions and 1 deletions

View file

@ -59,5 +59,20 @@ let LogicCondition = function (enabled, operation, operandAType, operandAValue,
flags = data;
};
self.render = function ($container) {
$container.find('tbody').append('<tr>\
<td class="logic_cell__index"></td>\
<td class="logic_cell__enabled"></td>\
<td class="logic_cell__operation"></td>\
<td class="logic_cell__operandA"></td>\
<td class="logic_cell__operandB"></td>\
<td class="logic_cell__flags"></td>\
</tr>\
');
}
return self;
};