]> git.proxmox.com Git - pve-manager.git/blob - www/manager/form/EmailNotificationSelector.js
disable animation of charts on load
[pve-manager.git] / www / manager / form / EmailNotificationSelector.js
1 Ext.define('PVE.form.EmailNotificationSelector', {
2 extend: 'PVE.form.KVComboBox',
3 alias: ['widget.pveEmailNotificationSelector'],
4
5 initComponent: function() {
6 var me = this;
7
8 me.data = [
9 ['always', gettext('Always')],
10 ['failure', gettext('On failure only')]
11 ];
12
13 me.callParent();
14 }
15 });