mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-23 08:15:19 +03:00
Render basic table
This commit is contained in:
parent
3e1e38f6d2
commit
2946fe5c2a
4 changed files with 29 additions and 1 deletions
|
@ -21,5 +21,15 @@ let LogicConditionsCollection = function () {
|
|||
return data.length
|
||||
}
|
||||
|
||||
self.render = function ($container) {
|
||||
|
||||
for (let k in self.get()) {
|
||||
if (self.get().hasOwnProperty(k)) {
|
||||
self.get()[k].render($container);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return self;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue