removing about page
parent
74323d894f
commit
475b331816
|
@ -937,22 +937,6 @@ a:hover {
|
||||||
.tab-cli .copy:hover {
|
.tab-cli .copy:hover {
|
||||||
background-color: #dedcdc;
|
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 related styles */
|
||||||
.flotr-legend {
|
.flotr-legend {
|
||||||
|
|
|
@ -74,8 +74,6 @@ $(document).ready(function() {
|
||||||
$('#content').load("./tabs/sensors.html", tab_initialize_sensors);
|
$('#content').load("./tabs/sensors.html", tab_initialize_sensors);
|
||||||
} else if ($(self).parent().hasClass('tab_cli')) {
|
} else if ($(self).parent().hasClass('tab_cli')) {
|
||||||
$('#content').load("./tabs/cli.html", tab_initialize_cli);
|
$('#content').load("./tabs/cli.html", tab_initialize_cli);
|
||||||
} else if ($(self).parent().hasClass('tab_about')) {
|
|
||||||
$('#content').load("./tabs/about.html", tab_initialize_about);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
<script type="text/javascript" src="./tabs/motor_outputs.js"></script>
|
<script type="text/javascript" src="./tabs/motor_outputs.js"></script>
|
||||||
<script type="text/javascript" src="./tabs/sensors.js"></script>
|
<script type="text/javascript" src="./tabs/sensors.js"></script>
|
||||||
<script type="text/javascript" src="./tabs/cli.js"></script>
|
<script type="text/javascript" src="./tabs/cli.js"></script>
|
||||||
<script type="text/javascript" src="./tabs/about.js"></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="main-wrapper">
|
<div id="main-wrapper">
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
<div class="tab-about">
|
|
||||||
<p>
|
|
||||||
<strong>baseflight / multiwii configurator</strong> was designed to "step up the game" where the <strong>configuration</strong> required for each UAV
|
|
||||||
was becoming rather <span style="color: red;">complex</span> 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 (<strong>beginners</strong>) to join the platform much <span style="color: green;">easier</span>.<br />
|
|
||||||
</p>
|
|
||||||
<p style="text-align: center;">
|
|
||||||
If you <strong>like</strong> this software and think it should be developer further, please consider a small <strong>donation</strong><br />
|
|
||||||
As i am <span style="color: red">unemployed</span>, i could really use the money.<br />
|
|
||||||
<br />
|
|
||||||
Thank you<br />
|
|
||||||
<br />
|
|
||||||
<a href="http://goo.gl/xQMKN" target="_blank" title="Donate"><img src="./images/btn_donate_SM.gif" alt="Paypal" /></a>
|
|
||||||
</p>
|
|
||||||
<p class="created">
|
|
||||||
created for <strong>baseflight</strong> by <strong>cTn</strong> ©
|
|
||||||
</p>
|
|
||||||
</div>
|
|
|
@ -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);
|
|
||||||
}
|
|
|
@ -49,6 +49,42 @@
|
||||||
.changelog .wrapper p {
|
.changelog .wrapper p {
|
||||||
margin-bottom: 5px;
|
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;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<div class="tab-default">
|
<div class="tab-default">
|
||||||
<div class="welcome">
|
<div class="welcome">
|
||||||
|
@ -66,4 +102,16 @@
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="clear-both"></div>
|
||||||
|
<div class="donate">
|
||||||
|
<div class="title">Open Source / Donation Notice</div>
|
||||||
|
<p>
|
||||||
|
This utility is fully <strong>open source</strong> and is available free of charge to all baseflight users.<br />
|
||||||
|
If you found the utility useful, please consider <strong>supporting</strong> its developmnet by donating.<br />
|
||||||
|
</p>
|
||||||
|
<a href="http://goo.gl/xQMKN" target="_blank" title="Donate"><img src="./images/btn_donate_SM.gif" alt="Paypal" /></a>
|
||||||
|
</div>
|
||||||
|
<p class="created">
|
||||||
|
created for <strong>baseflight</strong> by <strong>cTn</strong> ©
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
Loading…
Reference in New Issue