Prevent duplicate group showing in multiselect that added the group

remotes/origin/stable4
Michael Gapczynski 2012-06-29 17:52:24 +07:00
parent dd7d34a40e
commit ffadbfcef3
1 changed files with 3 additions and 1 deletions

@ -42,7 +42,9 @@ $(document).ready(function(){
}
var addGroup = function(group) {
$('select[multiple]').each(function(index, element) {
$(element).append('<option value="'+group+'">'+group+'</option>');
if ($(element).find('option[value="'+group +'"]').length == 0) {
$(element).append('<option value="'+group+'">'+group+'</option>');
}
})
};
element.multiSelect({