trigger "change" after change module list on module finder

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9220 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2011-09-20 06:02:54 +00:00
parent 3f9d1d2779
commit 82c5ad88f3

View file

@ -533,7 +533,7 @@ $.fn.xeModuleFinder = function(){
if(!list.hasOwnProperty(x)) continue; if(!list.hasOwnProperty(x)) continue;
$('<option />').attr('value', list[x].module_srl).text(list[x].browser_title).appendTo($mid_select); $('<option />').attr('value', list[x].module_srl).text(list[x].browser_title).appendTo($mid_select);
} }
$mid_select.prop('selectedIndex', 0); $mid_select.prop('selectedIndex', 0).change();
}); });
return this; return this;