mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 14:15:30 +00:00
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:
parent
86786561e4
commit
1fa7f6d74f
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user