mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-15 04:15:28 +03:00
Fixing tab area (when log is open) = now scrollable. Also fixed: receiverMSP Button
This commit is contained in:
parent
4e8fc955b0
commit
34a45e0b9b
4 changed files with 59 additions and 24 deletions
6
main.js
6
main.js
|
@ -367,8 +367,8 @@ $("#showlog").on('click', function() {
|
|||
if ( state ) {
|
||||
$("#log").animate({height: 27}, 200);
|
||||
$("#log").removeClass('active');
|
||||
$("#content").removeClass('logopen');
|
||||
$("#tabs").removeClass('logopen');
|
||||
$("#content").removeClass('logopen');
|
||||
$(".tab_container").removeClass('logopen');
|
||||
$("#scrollicon").removeClass('active');
|
||||
|
||||
state = false;
|
||||
|
@ -376,7 +376,7 @@ $("#showlog").on('click', function() {
|
|||
$("#log").animate({height: 111}, 200);
|
||||
$("#log").addClass('active');
|
||||
$("#content").addClass('logopen');
|
||||
$("#tabs").addClass('logopen');
|
||||
$(".tab_container").addClass('logopen');
|
||||
$("#scrollicon").addClass('active');
|
||||
|
||||
state = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue