mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-12 09:45:00 +00:00
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
Ext.define('PVE.form.BackupModeSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveBackupModeSelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
me.data = [
|
|
['snapshot', gettext('Snapshot')],
|
|
['suspend', gettext('Suspend')],
|
|
['stop', gettext('Stop')]
|
|
];
|
|
|
|
me.callParent();
|
|
}
|
|
});
|