copy form/QemuBiosSelector.js from manager to manager6

This commit is contained in:
Dietmar Maurer 2016-03-18 15:42:36 +01:00
parent f1f6c52ed7
commit d53b4cc501

View File

@ -0,0 +1,16 @@
Ext.define('PVE.form.QemuBiosSelector', {
extend: 'PVE.form.KVComboBox',
alias: ['widget.pveQemuBiosSelector'],
initComponent: function() {
var me = this;
me.data = [
['', PVE.Utils.render_qemu_bios('')],
['seabios', PVE.Utils.render_qemu_bios('seabios')],
['ovmf', PVE.Utils.render_qemu_bios('ovmf')]
];
me.callParent();
}
});