1
0
Fork 0
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:
Albert Kravcov 2015-11-15 16:33:37 +01:00
parent 4e8fc955b0
commit 34a45e0b9b
4 changed files with 59 additions and 24 deletions

View file

@ -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;