FIx to reach content browser area.

This commit is contained in:
mgalli%geckonnection.com 2005-10-07 22:26:25 +00:00
Родитель 0f70469bee
Коммит a11b035c0e
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -332,8 +332,11 @@ function eventHandlerMenu(e) {
}
}
if(tempElement=="#tabContent") {
document.commandDispatcher.advanceFocusIntoSubtree(document.getElementById("content"));
document.commandDispatcher.advanceFocus();
// THis is hack to go backwards and get into browser area.
// The previous approach worked in toolkitFF desktop and failed in device.
document.commandDispatcher.advanceFocusIntoSubtree(document.getElementById("nav-bar"));
document.commandDispatcher.rewindFocus();
}
} else {