add min width to multiselect in user management

This commit is contained in:
Robin Appelman 2012-01-14 23:10:38 +01:00
parent 5eb6071b04
commit 2d25bb3b01
1 changed files with 4 additions and 3 deletions

View File

@ -30,9 +30,10 @@ $(document).ready(function(){
}
element.multiSelect({
createText:'add group',
checked:checked,
oncheck:checkHandeler,
onuncheck:checkHandeler
checked:checked,
oncheck:checkHandeler,
onuncheck:checkHandeler,
minWidth: 100,
});
}
$('select[multiple]').each(function(index,element){