mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-13 04:08:15 +00:00
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
Ext.define('PVE.form.CompressionSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveCompressionSelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
me.data = [
|
|
['', gettext('none')],
|
|
['lzo', 'LZO (' + gettext('fast') + ')'],
|
|
['gzip', 'GZIP (' + gettext('good') + ')']
|
|
];
|
|
|
|
me.callParent();
|
|
}
|
|
});
|