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

Fix for open log

This commit is contained in:
skaman82 2015-10-28 12:35:44 +01:00
parent c75eb290c4
commit dcc037c549
2 changed files with 20 additions and 0 deletions

3
main.js Executable file → Normal file
View file

@ -378,12 +378,15 @@ $("#showlog").on('click', function() {
if ( state ) {
$("#log").animate({height: 27}, 800);
$("#log").removeClass('active');
$("#content").removeClass('active');
$("#scrollicon").removeClass('active');
state = false;
}else{
$("#log").animate({height: 111}, 800);
$("#log").addClass('active');
$("#content").addClass('active');
$("#scrollicon").addClass('active');
state = true;