Bug 92933 - correct tab selection

r=rginda
chatzilla only
This commit is contained in:
samuel%sieb.net 2002-02-19 21:07:34 +00:00
Родитель 121c808443
Коммит 431e06f1ad
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1653,7 +1653,7 @@ function setCurrentObject (obj)
}
if (tb)
{
tb.setAttribute ("selected", "false");
tb.selected = false;
tb.setAttribute ("state", "normal");
}
@ -1676,7 +1676,7 @@ function setCurrentObject (obj)
tb = getTabForObject(obj);
if (tb)
{
tb.setAttribute ("selected", "true");
tb.selected = true;
tb.setAttribute ("state", "current");
}