зеркало из https://github.com/mozilla/gecko-dev.git
Bug 52454; enable progress dialog to be opened via window watcher (for new helper app dialog); r=pchen@netscape.com, sr=ben@netscape.com
This commit is contained in:
Родитель
0a790c16b1
Коммит
dff78f4585
|
@ -304,7 +304,7 @@ function replaceInsert( text, index, value ) {
|
|||
|
||||
function onLoad() {
|
||||
// Set global variables.
|
||||
helperAppLoader = window.arguments[0];
|
||||
helperAppLoader = window.arguments[0].QueryInterface( Components.interfaces.nsIHelperAppLauncher );
|
||||
|
||||
if ( !helperAppLoader ) {
|
||||
dump( "Invalid argument to downloadProgress.xul\n" );
|
||||
|
@ -337,7 +337,12 @@ function onLoad() {
|
|||
|
||||
// set our web progress listener on the helper app launcher
|
||||
helperAppLoader.setWebProgressListener(progressListener);
|
||||
moveToAlertPosition();
|
||||
|
||||
if ( window.opener ) {
|
||||
moveToAlertPosition();
|
||||
} else {
|
||||
centerWindowOnScreen();
|
||||
}
|
||||
}
|
||||
|
||||
function onUnload()
|
||||
|
|
Загрузка…
Ссылка в новой задаче