mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-13 11:29:53 +03:00
initial code for gps strength indicator
This commit is contained in:
parent
21b0248430
commit
58d34ee9e5
8 changed files with 222 additions and 49 deletions
|
@ -37,6 +37,8 @@ $(document).ready(function() {
|
|||
$('#content').load("./tabs/receiver.html", tab_initialize_receiver);
|
||||
} else if ($(this).parent().hasClass('tab_auxiliary_configuration')) {
|
||||
$('#content').load("./tabs/auxiliary_configuration.html", tab_initialize_auxiliary_configuration);
|
||||
} else if ($(this).parent().hasClass('tab_gps')) {
|
||||
$('#content').load("./tabs/gps.html", tab_initialize_gps);
|
||||
} else if ($(this).parent().hasClass('tab_motor_outputs')) {
|
||||
$('#content').load("./tabs/motor_outputs.html", tab_initialize_motor_outputs);
|
||||
} else if ($(this).parent().hasClass('tab_sensors')) {
|
||||
|
@ -50,7 +52,7 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
// temporary
|
||||
//$('#content').load("./tabs/initial_setup.html", tab_initialize_initial_setup);
|
||||
//$('#content').load("./tabs/gps.html", tab_initialize_gps);
|
||||
});
|
||||
|
||||
function disable_timers() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue