Bug 260357 Nothing is selected for some radio buttons

p=me r+sr=neil
This commit is contained in:
bugzilla%arlen.demon.co.uk 2004-09-19 21:22:49 +00:00
Родитель 7228c75676
Коммит 151f522267
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@
this.setAttribute("value", val);
var children = this._getRadioChildren();
for (var i = 0; i < children.length; i++) {
if (children[i].value == val) {
if (String(children[i].value) == String(val)) {
this.selectedItem = children[i];
break;
}