]> git.proxmox.com Git - pve-manager.git/blob - www/manager/window/NotesEdit.js
disable animation of charts on load
[pve-manager.git] / www / manager / window / NotesEdit.js
1 Ext.define('PVE.window.NotesEdit', {
2 extend: 'PVE.window.Edit',
3
4 initComponent : function() {
5 var me = this;
6
7 Ext.apply(me, {
8 title: gettext('Notes'),
9 width: 600,
10 layout: 'fit',
11 items: {
12 xtype: 'textarea',
13 name: 'description',
14 rows: 7,
15 value: '',
16 hideLabel: true
17 }
18 });
19
20 me.callParent();
21
22 me.load();
23 }
24 });