Fix bug 128554 & 128555: un-modal some cookie/image/wallet dialogs that shouldn't be modal. r=sdagley sr=ben a=asa

This commit is contained in:
rjc%netscape.com 2006-07-27 14:55:59 +00:00
Родитель 6b25938bbd
Коммит 9e764d6531
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -23,17 +23,17 @@ var IMAGEPERMISSION = 1;
function viewImages() { function viewImages() {
window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","_blank", window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","_blank",
"modal=yes,chrome,resizable=yes", "imageManager" ); "chrome,resizable=yes", "imageManager" );
} }
function viewCookies() { function viewCookies() {
window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","_blank", window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","_blank",
"modal=yes,chrome,resizable=yes", "cookieManager"); "chrome,resizable=yes", "cookieManager");
} }
function viewCookiesFromIcon() { function viewCookiesFromIcon() {
window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","_blank", window.openDialog("chrome://communicator/content/wallet/CookieViewer.xul","_blank",
"modal=yes,chrome,resizable=yes", "cookieManagerFromIcon"); "chrome,resizable=yes", "cookieManagerFromIcon");
} }
function viewTutorial() { function viewTutorial() {
@ -43,5 +43,5 @@ function viewTutorial() {
function viewP3P() { function viewP3P() {
window.openDialog window.openDialog
("chrome://cookie/content/p3p.xul","_blank","modal=yes,chrome,resizable=no"); ("chrome://cookie/content/p3p.xul","_blank","chrome,resizable=no");
} }