some display logic fixes
This commit is contained in:
parent
a19c531b2b
commit
3a9dd9e33a
1 changed files with 3 additions and 2 deletions
|
|
@ -1607,10 +1607,11 @@ function changePassType() {
|
|||
passIdRow.style.display="none";
|
||||
var passIdChooser = document.getElementById("passId_formId");
|
||||
if (passType == "member") {
|
||||
passIdChooser.multiple=1;
|
||||
passIdChooser.multiple=true;
|
||||
passIdChooser.size=5;
|
||||
} else {
|
||||
passIdChooser.multiple=0;
|
||||
passIdChooser.size=1;
|
||||
passIdChooser.multiple=false;
|
||||
}
|
||||
passIdRow.style.display="";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue