diff options
author | Sarven Capadisli <csarven@status.net> | 2009-11-25 21:32:51 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-11-25 21:32:51 +0000 |
commit | 1ea5ccc5c1bcf3113164c67f552508e4c24041e6 (patch) | |
tree | 451c97954d22dff96be7c219b62e8500093a8649 | |
parent | 9d5e8649fa45bea5fd5fbf7db8c3d79064073442 (diff) |
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.
-rw-r--r-- | plugins/Realtime/realtimeupdate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index b3c41456e..4ed95ff26 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -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; }); |