[pve-devel] r6183 - pve-manager/pve2/www/manager

svn-commits at proxmox.com svn-commits at proxmox.com
Mon Jun 27 12:07:40 CEST 2011


Author: dietmar
Date: 2011-06-27 12:07:39 +0200 (Mon, 27 Jun 2011)
New Revision: 6183

Modified:
   pve-manager/pve2/www/manager/VNCConsole.js
Log:
allow to send CAD


Modified: pve-manager/pve2/www/manager/VNCConsole.js
===================================================================
--- pve-manager/pve2/www/manager/VNCConsole.js	2011-06-27 09:59:36 UTC (rev 6182)
+++ pve-manager/pve2/www/manager/VNCConsole.js	2011-06-27 10:07:39 UTC (rev 6183)
@@ -211,6 +211,17 @@
 		}
 	    },
 	    { 
+		text: 'CAD',
+		handler: function() { 
+		    var msg = "Send CAD (Ctrl-Alt-Delete) to the VM?";
+		    Ext.Msg.confirm('Confirm', msg, function(btn) {
+			if (btn !== 'yes')
+			    return;
+			vm_command("cad");
+		    });
+		}
+	    },
+	    { 
 		text: 'Reset',
 		handler: function() { 
 		    var msg = "Do you really want to reset the VM?";




More information about the pve-devel mailing list