Selaa lähdekoodia

Renamed and moved updateXvpButton

samhed 9 vuotta sitten
vanhempi
commit
9e45354efc
1 muutettua tiedostoa jossa 15 lisäystä ja 15 poistoa
  1. 15 15
      include/ui.js

+ 15 - 15
include/ui.js

@@ -186,7 +186,7 @@ var UI;
             try {
                 UI.rfb = new RFB({'target': $D('noVNC_canvas'),
                                   'onUpdateState': UI.updateState,
-                                  'onXvpInit': UI.updateXvpVisualState,
+                                  'onXvpInit': UI.updateXvpButton,
                                   'onClipboard': UI.clipReceive,
                                   'onFBUComplete': UI.initialResize,
                                   'onFBResize': UI.updateViewDrag,
@@ -319,7 +319,7 @@ var UI;
                 $D('showKeyboard').style.display = "none";
                 $D('noVNC_extra_keys').style.display = "none";
                 $D('sendCtrlAltDelButton').style.display = "none";
-                UI.updateXvpVisualState(0);
+                UI.updateXvpButton(0);
             }
 
             // State change disables viewport dragging.
@@ -540,6 +540,19 @@ var UI;
             }
         },
 
+        // Disable/enable XVP button
+        updateXvpButton: function(ver) {
+            if (ver >= 1) {
+                $D('xvpButton').style.display = 'inline';
+            } else {
+                $D('xvpButton').style.display = 'none';
+                // Close XVP panel if open
+                if (UI.xvpOpen === true) {
+                    UI.toggleXvpPanel();
+                }
+            }
+        },
+
         // Show the clipboard panel
         toggleClipboardPanel: function() {
             // Close the description panel
@@ -772,19 +785,6 @@ var UI;
             }
         },
 
-        // Disable/enable XVP button
-        updateXvpVisualState: function(ver) {
-            if (ver >= 1) {
-                $D('xvpButton').style.display = 'inline';
-            } else {
-                $D('xvpButton').style.display = 'none';
-                // Close XVP panel if open
-                if (UI.xvpOpen === true) {
-                    UI.toggleXvpPanel();
-                }
-            }
-        },
-
         // Display the desktop name in the document title
         updateDocumentTitle: function(rfb, name) {
             document.title = name + " - noVNC";