mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 16:55:24 +03:00
Move Documentation and Support links to separate tab. Add a
contributing section. Unify help/landing section CSS/html a little. Expand the sponsors panel area in preparation for an updated section.
This commit is contained in:
parent
432d9f0720
commit
c3f1c13d54
9 changed files with 164 additions and 104 deletions
21
tabs/help.js
Normal file
21
tabs/help.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
'use strict';
|
||||
|
||||
TABS.help = {};
|
||||
TABS.help.initialize = function (callback) {
|
||||
var self = this;
|
||||
|
||||
if (GUI.active_tab != 'help') {
|
||||
GUI.active_tab = 'help';
|
||||
googleAnalytics.sendAppView('help');
|
||||
}
|
||||
|
||||
$('#content').load("./tabs/help.html", function () {
|
||||
localize();
|
||||
|
||||
if (callback) callback();
|
||||
});
|
||||
};
|
||||
|
||||
TABS.help.cleanup = function (callback) {
|
||||
if (callback) callback();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue