1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-16 04:45:20 +03:00

Changes as per review comment

This commit is contained in:
Bas Delfos 2018-01-25 00:37:07 +01:00
parent 24c81375a4
commit fd8e47706d
141 changed files with 248 additions and 263 deletions

20
src/js/tabs/help.js Normal file
View file

@ -0,0 +1,20 @@
'use strict';
TABS.help = {};
TABS.help.initialize = function (callback) {
var self = this;
if (GUI.active_tab != 'help') {
GUI.active_tab = 'help';
}
$('#content').load("./tabs/help.html", function () {
localize();
GUI.content_ready(callback);
});
};
TABS.help.cleanup = function (callback) {
if (callback) callback();
};