Re-arrange global UI variables
This commit is contained in:
parent
8b0a0f6637
commit
529c64e103
|
@ -24,20 +24,25 @@ var UI;
|
||||||
UI = {
|
UI = {
|
||||||
|
|
||||||
rfb_state: 'loaded',
|
rfb_state: 'loaded',
|
||||||
|
|
||||||
resizeTimeout: null,
|
resizeTimeout: null,
|
||||||
|
popupStatusTimeout: null,
|
||||||
|
hideKeyboardTimeout: null,
|
||||||
|
|
||||||
settingsOpen: false,
|
settingsOpen: false,
|
||||||
connSettingsOpen: false,
|
connSettingsOpen: false,
|
||||||
popupStatusTimeout: null,
|
|
||||||
clipboardOpen: false,
|
clipboardOpen: false,
|
||||||
keyboardVisible: false,
|
keyboardVisible: false,
|
||||||
hideKeyboardTimeout: null,
|
|
||||||
lastKeyboardinput: null,
|
|
||||||
defaultKeyboardinputLen: 100,
|
|
||||||
extraKeysVisible: false,
|
|
||||||
ctrlOn: false,
|
|
||||||
altOn: false,
|
|
||||||
isTouchDevice: false,
|
isTouchDevice: false,
|
||||||
rememberedClipSetting: null,
|
rememberedClipSetting: null,
|
||||||
|
lastKeyboardinput: null,
|
||||||
|
defaultKeyboardinputLen: 100,
|
||||||
|
|
||||||
|
shiftDown: false,
|
||||||
|
ctrlDown: false,
|
||||||
|
altDown: false,
|
||||||
|
altGrDown: false,
|
||||||
|
|
||||||
// Setup rfb object, load settings from browser storage, then call
|
// Setup rfb object, load settings from browser storage, then call
|
||||||
// UI.init to setup the UI/menus
|
// UI.init to setup the UI/menus
|
||||||
|
|
Loading…
Reference in New Issue