зеркало из https://github.com/mozilla/gecko-dev.git
Fix for 20310; handle JS exception when Cancel is pressed; r=slamm@netscape.com
This commit is contained in:
Родитель
9c5b3edc9f
Коммит
16068a8e4e
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче