Commit e1049eb1 authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #644: remove old java console

Java browser plugins are depreciated and not supported by
modern browsers anymore.
parent 3a21eb59
...@@ -6,6 +6,8 @@ pve-manager (4.0-14) unstable; urgency=medium ...@@ -6,6 +6,8 @@ pve-manager (4.0-14) unstable; urgency=medium
* Force Internet Explorer to interpret pages in IE10 compatibility modus * Force Internet Explorer to interpret pages in IE10 compatibility modus
* remove old java console
-- Proxmox Support Team <support@proxmox.com> Fri, 19 Jun 2015 06:46:19 +0200 -- Proxmox Support Team <support@proxmox.com> Fri, 19 Jun 2015 06:46:19 +0200
pve-manager (4.0-13) unstable; urgency=medium pve-manager (4.0-13) unstable; urgency=medium
......
...@@ -34,14 +34,6 @@ Ext.define('PVE.button.ConsoleButton', { ...@@ -34,14 +34,6 @@ Ext.define('PVE.button.ConsoleButton', {
} }
}); });
var vncMenu = Ext.create('Ext.menu.Item', {
text: 'VNC',
iconCls: 'pve-itype-icon-tigervnc',
handler: function() {
PVE.Utils.openConsoleWindow('applet', me.consoleType, me.vmid, me.nodename, me.consoleName);
}
});
var noVncMenu = Ext.create('Ext.menu.Item', { var noVncMenu = Ext.create('Ext.menu.Item', {
text: 'noVNC', text: 'noVNC',
iconCls: 'pve-itype-icon-novnc', iconCls: 'pve-itype-icon-novnc',
...@@ -58,7 +50,7 @@ Ext.define('PVE.button.ConsoleButton', { ...@@ -58,7 +50,7 @@ Ext.define('PVE.button.ConsoleButton', {
me.nodename, me.consoleName); me.nodename, me.consoleName);
}, },
menu: new Ext.menu.Menu({ menu: new Ext.menu.Menu({
items: [ noVncMenu, vncMenu, me.spiceMenu ] items: [ noVncMenu, me.spiceMenu ]
}) })
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment