copy qemu/QemuBiosEdit.js from manager to manager6

This commit is contained in:
Dietmar Maurer 2016-03-16 09:12:23 +01:00
parent 59e85a547d
commit cedc0418e3

View File

@ -0,0 +1,21 @@
Ext.define('PVE.qemu.BiosEdit', {
extend: 'PVE.window.Edit',
initComponent : function() {
var me = this;
Ext.applyIf(me, {
subject: 'BIOS',
items: {
xtype: 'pveQemuBiosSelector',
name: 'bios',
value: '',
fieldLabel: 'BIOS'
}
});
me.callParent();
me.load();
}
});