1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 21:35:44 +03:00

adding new tabs object (will contain all tab methods in the future)

This commit is contained in:
cTn 2014-07-10 18:13:38 +02:00
parent b8fc822765
commit 7e67cccf96

View file

@ -1,8 +1,11 @@
var tabs = {}; // filled by individual tab js file
var GUI_control = function() { var GUI_control = function() {
this.auto_connect = false; this.auto_connect = false;
this.connecting_to = false; this.connecting_to = false;
this.connected_to = false; this.connected_to = false;
this.active_tab; this.active_tab;
this.active_tab_ref = false;
this.tab_switch_in_progress = false; this.tab_switch_in_progress = false;
this.operating_system; this.operating_system;
this.optional_usb_permissions = false; // controlled by usb permissions code this.optional_usb_permissions = false; // controlled by usb permissions code