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

Reduced animation speed of the logbar

This commit is contained in:
skaman82 2015-10-29 09:38:52 +01:00
parent 968e10feeb
commit b91bdc1d0b
2 changed files with 5 additions and 4 deletions

View file

@ -376,7 +376,7 @@ $(document).ready(function () {
$("#showlog").on('click', function() {
var state = $(this).data('state');
if ( state ) {
$("#log").animate({height: 27}, 800);
$("#log").animate({height: 27}, 200);
$("#log").removeClass('active');
$("#content").removeClass('logopen');
$("#tabs").removeClass('logopen');
@ -384,7 +384,7 @@ $("#showlog").on('click', function() {
state = false;
}else{
$("#log").animate({height: 111}, 800);
$("#log").animate({height: 111}, 200);
$("#log").addClass('active');
$("#content").addClass('logopen');
$("#tabs").addClass('logopen');