copy form/CompressionSelector.js from manager to manager5
This commit is contained in:
parent
d42c31585d
commit
a2657c6c5c
16
www/manager5/form/CompressionSelector.js
Normal file
16
www/manager5/form/CompressionSelector.js
Normal file
@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user