diff --git a/css/style.css b/css/style.css
index 51e67380e8..571edf3b64 100644
--- a/css/style.css
+++ b/css/style.css
@@ -937,22 +937,6 @@ a:hover {
.tab-cli .copy:hover {
background-color: #dedcdc;
}
-.tab-about {
-}
- .tab-about p {
- padding: 5px;
- margin-bottom: 10px;
-
- border: 1px dotted silver;
- }
- .tab-about .created {
- position: absolute;
-
- width: 905px;
- bottom: 0px;
-
- text-align: center;
- }
/* Flotr related styles */
.flotr-legend {
diff --git a/js/main.js b/js/main.js
index 0bb981730c..6a4a1994f8 100644
--- a/js/main.js
+++ b/js/main.js
@@ -74,8 +74,6 @@ $(document).ready(function() {
$('#content').load("./tabs/sensors.html", tab_initialize_sensors);
} else if ($(self).parent().hasClass('tab_cli')) {
$('#content').load("./tabs/cli.html", tab_initialize_cli);
- } else if ($(self).parent().hasClass('tab_about')) {
- $('#content').load("./tabs/about.html", tab_initialize_about);
}
});
}
diff --git a/main.html b/main.html
index e539d5661c..e20139c3e1 100644
--- a/main.html
+++ b/main.html
@@ -28,7 +28,6 @@
-
diff --git a/tabs/about.html b/tabs/about.html
deleted file mode 100644
index 74f147c0d2..0000000000
--- a/tabs/about.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- baseflight / multiwii configurator was designed to "step up the game" where the configuration required for each UAV
- was becoming rather complex and difficult to do in certain environments as linux and mac os is getting a bigger userbase,
- i think a proper cross-platform GUI was needed to allow new users (beginners) to join the platform much easier.
-
-
- If you like this software and think it should be developer further, please consider a small donation
- As i am unemployed, i could really use the money.
-
- Thank you
-
-
-
-
- created for baseflight by cTn ©
-
-
\ No newline at end of file
diff --git a/tabs/about.js b/tabs/about.js
deleted file mode 100644
index 059ecb3557..0000000000
--- a/tabs/about.js
+++ /dev/null
@@ -1,11 +0,0 @@
-function tab_initialize_about() {
- ga_tracker.sendAppView('About Page');
- GUI.active_tab = 'about';
-
- // enable data pulling
- timers.push(setInterval(about_data_poll, 50));
-}
-
-function about_data_poll() {
- send_message(MSP_codes.MSP_STATUS, MSP_codes.MSP_STATUS);
-}
\ No newline at end of file
diff --git a/tabs/default.html b/tabs/default.html
index 1a940cc477..5b4c895433 100644
--- a/tabs/default.html
+++ b/tabs/default.html
@@ -49,6 +49,42 @@
.changelog .wrapper p {
margin-bottom: 5px;
}
+ .donate {
+ width: 504px;
+
+ padding: 0 0 5px 0;
+
+ border: 1px solid silver;
+ }
+ .donate .title {
+ line-height: 20px;
+
+ text-align: center;
+ font-weight: bold;
+ color: white;
+
+ border-bottom: 1px solid silver;
+ background-color: #3f4241;
+ }
+ .donate p {
+ padding: 5px;
+ }
+ .donate a {
+ display: block;
+
+ width: 74px;
+ height: 21px;
+
+ margin: auto;
+ }
+ .created {
+ position: absolute;
+
+ width: 920px;
+ bottom: 5px;
+
+ text-align: center;
+ }
+
+
+
Open Source / Donation Notice
+
+ This utility is fully open source and is available free of charge to all baseflight users.
+ If you found the utility useful, please consider supporting its developmnet by donating.
+
+

+
+
+ created for baseflight by cTn ©
+
\ No newline at end of file