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