pve-manager/www/manager/form/DisplaySelector.js
2011-08-23 07:40:22 +02: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();
}
});