mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-16 04:45:18 +03:00
Including fixes from wanderzell
• fixes small css bug with tooltip icons • fixes sensor icons nit showing up when connecting Naze32 Acro rev6 and Sparky1.1
This commit is contained in:
parent
3185721c64
commit
990fd26eb9
3 changed files with 5 additions and 7 deletions
|
@ -257,14 +257,14 @@ function onConnect() {
|
||||||
$('#tabs ul.mode-disconnected').hide();
|
$('#tabs ul.mode-disconnected').hide();
|
||||||
$('#tabs ul.mode-connected').show();
|
$('#tabs ul.mode-connected').show();
|
||||||
|
|
||||||
if ("CLFL" == CONFIG.flightControllerIdentifier){
|
// if ("CLFL" == CONFIG.flightControllerIdentifier){
|
||||||
|
// not sure why this check was needed? disabling it to show sensors for all.
|
||||||
var sensor_state = $('#sensor-status');
|
var sensor_state = $('#sensor-status');
|
||||||
sensor_state.show();
|
sensor_state.show();
|
||||||
|
|
||||||
var port_picker = $('#portsinput');
|
var port_picker = $('#portsinput');
|
||||||
port_picker.hide();
|
port_picker.hide();
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onClosed(result) {
|
function onClosed(result) {
|
||||||
|
|
2
main.css
2
main.css
|
@ -52,7 +52,7 @@ a.disabled {
|
||||||
}
|
}
|
||||||
|
|
||||||
.helpicon:hover {
|
.helpicon:hover {
|
||||||
opacity: 1.0;
|
opacity: 0.9;
|
||||||
background-image: url(images/icons/cf_icon_info_green.svg);
|
background-image: url(images/icons/cf_icon_info_green.svg);
|
||||||
transition: none;
|
transition: none;
|
||||||
}
|
}
|
||||||
|
|
4
main.js
4
main.js
|
@ -386,6 +386,4 @@ $("#showlog").on('click', function() {
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue