cloudStack 3.0 new UI - register ISO - shouldn't have "None" option when ISO is bootable.

This commit is contained in:
Jessica Wang 2011-12-06 14:13:01 -08:00
parent 994a74210f
commit 4a45fb2a1f

View File

@ -806,7 +806,7 @@
success: function(json) { success: function(json) {
var osTypeObjs = json.listostypesresponse.ostype; var osTypeObjs = json.listostypesresponse.ostype;
var items = []; var items = [];
items.push({id: "", description: "None"}); //items.push({id: "", description: "None"}); //shouldn't have None option when bootable is checked
$(osTypeObjs).each(function(){ $(osTypeObjs).each(function(){
items.push({id: this.id, description: this.description}); items.push({id: this.id, description: this.description});
}); });