Fixed JS typing error that killed Insert Character dialog, b=115089, r=brade, sr=hewitt, a=asa/drivers

This commit is contained in:
cmanske%netscape.com 2001-12-13 21:31:24 +00:00
Родитель 61500f18f6
Коммит 1041270396
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -200,9 +200,9 @@ function SelectLatinModifier()
function DisableLatinL(disable)
{
if (disable) {
LatinL_Label.setAttribute("disabled" "true");
LatinL_Label.setAttribute("disabled", "true");
LatinL.setAttribute("disabled", "true");
else {
} else {
LatinL_Label.removeAttribute("disabled");
LatinL.removeAttribute("disabled");
}