Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tabs
diff options
context:
space:
mode:
authorPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2019-03-10 17:14:31 +0300
committerPawel Spychalski (DzikuVx) <pspychalski@gmail.com>2019-03-10 17:14:31 +0300
commit2946fe5c2a2c4e183078330d23bea2260422c5ac (patch)
treed40a89438101bb926ff15d78b6c9f90798bbda37 /tabs
parent3e1e38f6d290d752518b249f29473daf48f805fb (diff)
Render basic table
Diffstat (limited to 'tabs')
-rw-r--r--tabs/mixer.html2
-rw-r--r--tabs/mixer.js3
2 files changed, 4 insertions, 1 deletions
diff --git a/tabs/mixer.html b/tabs/mixer.html
index e6ad82eb..16f25c5a 100644
--- a/tabs/mixer.html
+++ b/tabs/mixer.html
@@ -130,7 +130,7 @@
<div id="logic-background" class="logic__background"></div>
<div id="logic-content" class="logic__content">
<div class="tab_title" data-i18n="tabLogicConditions"></div>
- <table id="servo-mix-table" class="mixer-table">
+ <table id="logic-table" class="mixer-table">
<thead>
<tr>
<th style="width: 75px" data-i18n="logicId"></th>
diff --git a/tabs/mixer.js b/tabs/mixer.js
index ffcf3023..49c5dee9 100644
--- a/tabs/mixer.js
+++ b/tabs/mixer.js
@@ -378,6 +378,9 @@ TABS.mixer.initialize = function (callback, scrollPosition) {
renderOutputMapping();
localize();
+
+ LOGIC_CONDITIONS.render($('#logic-table'));
+
GUI.content_ready(callback);
}