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:
parent
b8fc822765
commit
7e67cccf96
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue