fix for nsbeta2+ bug 41362. clicking on the check mark was changing the name to "", which

was causing the type down code to kick in and change the selection.
r=alecf
This commit is contained in:
sspitzer%netscape.com 2000-06-09 22:14:23 +00:00
parent 86786561e4
commit 1fa7f6d74f

View File

@ -340,7 +340,9 @@ function SubscribeOnClick(event)
}
else {
var name = event.target.parentNode.parentNode.getAttribute('name');
gNameField.setAttribute('value',name);
if (name && (name.length > 0)) {
gNameField.setAttribute('value',name);
}
}
}
}