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:
parent
968e10feeb
commit
b91bdc1d0b
2 changed files with 5 additions and 4 deletions
4
main.js
4
main.js
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue