5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-03-16 06:50:18 +03:00
proxmox-backup/www/NodeNotes.js

24 lines
420 B
JavaScript
Raw Permalink Normal View History

// Needs to be its own xtype for `path` to work in `NavigationTree`
Ext.define('PBS.NodeNotes', {
extend: 'Ext.panel.Panel',
xtype: 'pbsNodeNotes',
scrollable: true,
layout: 'fit',
items: [
{
xtype: 'container',
layout: 'fit',
items: [{
xtype: 'pmxNotesView',
tools: false,
border: false,
node: 'localhost',
enableTBar: true,
maxLength: 1022*64,
}],
},
],
});