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

Basic Logic Conditions UI

This commit is contained in:
Pawel Spychalski (DzikuVx) 2020-04-05 19:44:26 +02:00
parent cdf7b82108
commit e7d26a5759
4 changed files with 27 additions and 3 deletions

View file

@ -38,13 +38,15 @@ TABS.programming.initialize = function (callback, scrollPosition) {
}
function loadHtml() {
console.log(2);
GUI.load("./tabs/programming.html", processHtml);
}
function processHtml() {
console.log(3);
LOGIC_CONDITIONS.init($('#logic-wrapper'));
LOGIC_CONDITIONS.render();
localize();
GUI.content_ready(callback);
}
}