pve-manager/www/manager/form/QemuBiosSelector.js
2016-01-22 11:24:24 +01:00

17 lines
373 B
JavaScript

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();
}
});