5
0
mirror of git://git.proxmox.com/git/novnc-pve.git synced 2025-01-03 05:17:56 +03:00

add fix for sendCtrlAltDeleteButton

with this patch the sendCtrlAltDeleteButton shows and
hides properly on mobile

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2016-04-14 10:55:57 +02:00 committed by Dietmar Maurer
parent 5b53f03537
commit 782c2d8a25
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,18 @@
--- a/pveui.js
+++ b/pveui.js
@@ -1156,6 +1156,7 @@
$D('toggleAltButton').style.display = "inline";
$D('sendTabButton').style.display = "inline";
$D('sendEscButton').style.display = "inline";
+ $D('sendCtrlAltDelButton').style.display = "inline";
$D('showExtraKeysButton').className = "noVNC_status_button_selected";
UI.extraKeysVisible = true;
} else if(UI.extraKeysVisible === true) {
@@ -1163,6 +1164,7 @@
$D('toggleAltButton').style.display = "";
$D('sendTabButton').style.display = "";
$D('sendEscButton').style.display = "";
+ $D('sendCtrlAltDelButton').style.display = "";
$D('showExtraKeysButton').className = "noVNC_status_button";
UI.extraKeysVisible = false;
}

View File

@ -1,3 +1,4 @@
pveui.patch
fix-base-css.patch
fix-ie11-resize.patch
fix-CtrlAltDel-button-mobile.patch