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

12 lines
240 B
JavaScript

Ext.define('PVE.form.DisplaySelector', {
extend: 'PVE.form.KVComboBox',
alias: ['widget.DisplaySelector'],
initComponent: function() {
var me = this;
me.data = PVE.Utils.kvm_vga_driver_array();
me.callParent();
}
});