mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-01 00:57:55 +00:00
20 lines
306 B
JavaScript
20 lines
306 B
JavaScript
Ext.define('PMG.ServerStatus', {
|
|
extend: 'Ext.panel.Panel',
|
|
alias: 'widget.pmgServerStatus',
|
|
|
|
title: gettext('Status'),
|
|
|
|
border: false,
|
|
|
|
tbar: [
|
|
{
|
|
text: gettext("Console"),
|
|
handler: function() {
|
|
PMG.Utils.openVNCViewer('shell', Proxmox.NodeName);
|
|
}
|
|
}
|
|
]
|
|
|
|
});
|
|
|