1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00
betaflight-configurator/tabs/default.js
2014-06-16 22:00:08 +02:00

16 lines
No EOL
532 B
JavaScript

function tab_initialize_default() {
GUI.active_tab = 'default';
$('#content').load("./tabs/default.html", function() {
//check_usb_permissions(); // temporary enabled in dev branch, should be commented out untill DFU support goes live
// translate to user-selected language
localize();
// load changelog content
$('div.changelog.configurator .wrapper').load('./changelog.html');
// UI Hooks
$('a.firmware_flasher').click(tab_initialize_firmware_flasher);
});
}