use preference for browser chrome url (aka navigator.xul). bug 31867

This commit is contained in:
danm%netscape.com 2006-07-27 14:49:54 +00:00
Родитель e348f62e8b
Коммит 0f8a88bb8e
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -92,6 +92,6 @@ function OpenURL(event, node)
}
// window.open(url,'history');
window.openDialog( "chrome://navigator/content/navigator.xul", "_blank", "chrome,all,dialog=no", url ); // get right sized window
window.openDialog( getBrowserURL(), "_blank", "chrome,all,dialog=no", url ); // get right sized window
return(true);
}

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

@ -775,7 +775,7 @@ function sidebarOpenURL(event, treeitem, root)
if ( window.content )
window.content.location = id;
else {
window.openDialog( "chrome://navigator/content/navigator.xul", "_blank", "chrome,all,dialog=no", id );
window.openDialog( getBrowserURL(), "_blank", "chrome,all,dialog=no", id );
}
}