From: Sarven Capadisli Date: Wed, 25 Nov 2009 21:32:51 +0000 (+0000) Subject: I can't hide the location and status bars in Firefox, IE or Chromium. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1ea5ccc5c1bcf3113164c67f552508e4c24041e6;p=quix0rs-gnu-social.git 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. --- diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index b3c41456ef..4ed95ff268 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; });