]> git.proxmox.com Git - pmg-gui.git/blame - js/VirusDetectorConfiguration.js
avoid useless borders
[pmg-gui.git] / js / VirusDetectorConfiguration.js
CommitLineData
08e5c6cf
DM
1Ext.define('PMG.VirusDetectorConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgVirusDetectorConfiguration',
4
5 title: gettext('Configuration') + ': ' +
6 gettext('Virus Detector'),
7
830e5827
DM
8 border: false,
9 defaults: { border: false },
10
08e5c6cf
DM
11 items: [
12 {
13 title: gettext('Options'),
14 xtype: 'pmgVirusDetectorOptions'
15 },
16 {
17 title: gettext('ClamAV'),
41c05692 18 xtype: 'pmgClamAVDatabase'
08e5c6cf
DM
19 },
20 {
21 title: gettext('Quarantine'),
063e0b21 22 xtype: 'pmgVirusQuarantineOptions'
08e5c6cf
DM
23 }
24 ]
25});
26
27