2013-10-30 16:42:04 +00:00
|
|
|
function tab_initialize_default() {
|
2014-02-14 21:17:51 +00:00
|
|
|
GUI.active_tab = 'default';
|
|
|
|
|
|
|
|
$('#content').load("./tabs/default.html", function() {
|
2013-10-30 16:42:04 +00:00
|
|
|
// load changelog content
|
|
|
|
$('div.changelog.configurator .wrapper').load('./changelog.html');
|
2013-11-13 07:55:29 +00:00
|
|
|
|
|
|
|
// UI Hooks
|
|
|
|
$('a.firmware_flasher').click(function() {
|
|
|
|
tab_initialize_firmware_flasher();
|
|
|
|
});
|
2013-10-30 16:42:04 +00:00
|
|
|
});
|
|
|
|
}
|