]> git.proxmox.com Git - pmg-gui.git/blame - js/ServerStatus.js
ServerStatus.js: panel to view server status and console button
[pmg-gui.git] / js / ServerStatus.js
CommitLineData
e653eb82
DM
1Ext.define('PMG.ServerStatus', {
2 extend: 'Ext.panel.Panel',
3 alias: 'widget.pmgServerStatus',
4
5 title: gettext('Status'),
6
7 border: false,
8
9 tbar: [
10 {
11 text: gettext("Console"),
12 handler: function() {
13 PMG.Utils.openVNCViewer('shell', Proxmox.NodeName);
14 }
15 }
16 ]
17
18});
19