mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
16 lines
No EOL
470 B
JavaScript
16 lines
No EOL
470 B
JavaScript
function tab_initialize_default() {
|
|
$('#content').load("./tabs/default.html", function() {
|
|
GUI.active_tab = 'default';
|
|
|
|
// load changelog content
|
|
$('div.changelog.configurator .wrapper').load('./changelog.html');
|
|
|
|
// UI Hooks
|
|
$('a.firmware_flasher').click(function() {
|
|
tab_initialize_firmware_flasher();
|
|
});
|
|
|
|
// temporary
|
|
tab_initialize_firmware_flasher();
|
|
});
|
|
} |