I can't hide the location and status bars in Firefox, IE or Chromium.

It only works in Safari and Opera.
https://developer.mozilla.org/En/DOM/Window.open confirms that by
default, Firefox and IE forces their presence.
This commit is contained in:
Sarven Capadisli 2009-11-25 21:32:51 +00:00
parent 9d5e8649fa
commit 1ea5ccc5c1
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ RealtimeUpdate = {
PP.bind('click', function() {
window.open(url,
'',
'toolbar=no,resizable=yes,scrollbars=yes,status=yes,width=500,height=550');
'toolbar=no,resizable=yes,scrollbars=yes,status=no,menubar=no,personalbar=no,location=no,width=500,height=550');
return false;
});