]> git.proxmox.com Git - pmg-gui.git/blob - js/SpamDetectorConfiguration.js
avoid useless borders
[pmg-gui.git] / js / SpamDetectorConfiguration.js
1 Ext.define('PMG.SpamDetectorConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgSpamDetectorConfiguration',
4
5 title: gettext('Configuration') + ': ' +
6 gettext('Spam Detector'),
7
8 border: false,
9 defaults: { border: false },
10
11 items: [
12 {
13 title: gettext('Options'),
14 xtype: 'pmgSpamDetectorOptions'
15 },
16 {
17 title: gettext('Quarantine'),
18 xtype: 'pmgSpamQuarantineOptions'
19 },
20 {
21 title: gettext('Backscatter'),
22 html: 'Backscatter'
23 },
24 {
25 title: gettext('Theme'),
26 html: 'Theme'
27 }
28 ]
29 });
30
31