1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 14:25:14 +03:00
betaflight-configurator/tabs/default.js
cTn ce351d7521 new UI population / JS execution order
(blink bugfix for several tabs)
2014-02-14 22:17:51 +01:00

13 lines
No EOL
397 B
JavaScript

function tab_initialize_default() {
GUI.active_tab = 'default';
$('#content').load("./tabs/default.html", function() {
// load changelog content
$('div.changelog.configurator .wrapper').load('./changelog.html');
// UI Hooks
$('a.firmware_flasher').click(function() {
tab_initialize_firmware_flasher();
});
});
}