This application is a configuration utility for baseflight, a 32 bit fork of the popular open source RC flight control firmware project
MultiWii.
diff --git a/tabs/default.js b/tabs/default.js
index 3452e6e3..8e917acd 100644
--- a/tabs/default.js
+++ b/tabs/default.js
@@ -2,6 +2,11 @@ function tab_initialize_default() {
$('#content').load("./tabs/default.html", function() {
GUI.active_tab = 'default';
+ // handle smaller resolution
+ if (screen.height <= 600) {
+ $('p.created').hide();
+ }
+
// load changelog content
$('div.changelog.configurator .wrapper').load('./changelog.html');
diff --git a/tabs/motor_outputs.css b/tabs/motor_outputs.css
index 2759e8c2..26b4a19b 100644
--- a/tabs/motor_outputs.css
+++ b/tabs/motor_outputs.css
@@ -64,7 +64,7 @@
.tab-motor_outputs .motor_testing .notice {
float: right;
- width: 490px;
+ width: 480px;
margin-top: 20px;
padding: 5px;
diff --git a/tabs/receiver.css b/tabs/receiver.css
index bfa16922..b5bfb852 100644
--- a/tabs/receiver.css
+++ b/tabs/receiver.css
@@ -22,12 +22,11 @@
border: 1px solid silver;
}
.tab-receiver .bars .value {
- width: 60px;
+ width: 50px;
padding-left: 20px;
}
.tab-receiver .tunings {
- float: left;
- border: 1p xsolid red;
+ float: right;
}
.tab-receiver .tunings table {
width: 30%;
@@ -83,11 +82,11 @@
width: 880px;
height: 250px;
}
- .tab-receiver .throttle_curve {
+ .tab-receiver .curves {
float: right;
-
- margin-bottom: 20px;
- margin-right: 10px;
+ }
+ .tab-receiver .throttle_curve {
+ margin: 0 10px 20px 10px;
width: 220px;
height: 58px;
@@ -95,10 +94,8 @@
border: 1px solid silver;
}
.tab-receiver .pitch_roll_curve {
- float: right;
-
- margin-right: 10px;
-
+ margin: 0 10px 0 10px;
+
width: 220px;
height: 58px;
diff --git a/tabs/receiver.html b/tabs/receiver.html
index 24ddc93a..6eb6290d 100644
--- a/tabs/receiver.html
+++ b/tabs/receiver.html
@@ -41,6 +41,14 @@