Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Kravcov <albertkravcov@ak-macbook-pro.localdomain>2015-11-15 18:33:37 +0300
committerAlbert Kravcov <albertkravcov@ak-macbook-pro.localdomain>2015-11-15 18:33:37 +0300
commit34a45e0b9b17d85ce4497ffb69d924751a1d1b7c (patch)
tree609a9d5d1df34f735ea26dcfc8daf18fb98230bd /main.js
parent4e8fc955b068a705022be3ac1007b2de63c16cdb (diff)
Fixing tab area (when log is open) = now scrollable. Also fixed: receiverMSP Button
Diffstat (limited to 'main.js')
-rw-r--r--main.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.js b/main.js
index 0a79479c..29613a01 100644
--- a/main.js
+++ b/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;