1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-15 04:15:28 +03:00
inav-configurator/tabs/default.js
2014-03-08 06:25:15 +01:00

13 lines
No EOL
377 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();
});
});
}