bug 27642 Javascript error when opening empty address book

This commit is contained in:
chuang%netscape.com 2000-03-16 23:02:49 +00:00
Родитель e83ed3ccd9
Коммит bd10e116b4
1 изменённых файлов: 7 добавлений и 4 удалений

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

@ -420,10 +420,13 @@ function DoSort(column, key, direction)
if ( node )
{
var selectionArray = RememberResultsTreeSelection();
xulSortService.Sort(node, key, direction);
ClearResultsTreeSelection() ;
WaitUntilDocumentIsLoaded();
RestoreResultsTreeSelection(selectionArray);
if (selectionArray.length)
{
xulSortService.Sort(node, key, direction);
ClearResultsTreeSelection() ;
WaitUntilDocumentIsLoaded();
RestoreResultsTreeSelection(selectionArray);
}
}
}