Fix for 20310; handle JS exception when Cancel is pressed; r=slamm@netscape.com

This commit is contained in:
law%netscape.com 2000-01-06 16:00:53 +00:00
Родитель 9c5b3edc9f
Коммит 16068a8e4e
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -1035,8 +1035,12 @@ function RevealSearchPanel()
{
// Get filespecwithui component.
var fileSpec = createInstance( "component://netscape/filespecwithui", "nsIFileSpecWithUI" );
var url = fileSpec.chooseFile( "Open File" );
if ( url != "" ) {
var url = null;
try {
url = fileSpec.chooseFile( "Open File" );
} catch ( exception ) {
}
if ( url && url != "" ) {
openNewWindowWith( url );
}
}