var MultiSelect= function () {
/// Constructor function of the event MultiSelect class.
///
return {
///
///Initializes the multiselect.
///
///
/// 1.0.0
init: function()
{
Common.logInfo("MultiSelect.init...");
//jQuery('.event-manager-multiselect').chosen({ search_contains: true });
jQuery(".event-manager-multiselect").chosen({search_contains:!0});
}
} //enf of returnmultiselect
}; //end of class
MultiSelect= MultiSelect();
jQuery(document).ready(function($)
{
MultiSelect.init();
});