Bug 288797 Alt-c on the search bar generates JS console error

p=me r=neil.parkwaycc.co.uk sr=bienvenu
This commit is contained in:
bugzilla%arlen.demon.co.uk 2005-04-04 21:30:55 +00:00
Родитель 170128dc2e
Коммит 97953054fd
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -499,7 +499,9 @@ function onSearchInput(returnKeyHit)
function onClearSearch()
{
var focusedElement = gLastFocusedElement; //save of the last focused element so that focus can be restored
// Use the last focused element so that focus can be restored
// if it does not exist, try and get the thread tree instead
var focusedElement = gLastFocusedElement || GetThreadTree();
Search("");
focusedElement.focus();
}