From: jervfors Date: Tue, 10 Aug 2004 05:31:56 +0000 (+0000) Subject: Adding status bar to the compose window X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=75442b66c906c6a461b37d1b0533170eff121d46 Adding status bar to the compose window git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7873 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/page_header.php b/functions/page_header.php index 9dc29bb7..fd072dc9 100644 --- a/functions/page_header.php +++ b/functions/page_header.php @@ -166,7 +166,7 @@ function displayPageHeader($color, $mailbox, $xtra='', $session=false) { ' var newwin = window.open(comp_uri' . ', "_blank",'. '"width='.$compose_width. ',height='.$compose_height. - ',scrollbars=yes,resizable=yes");'."\n". + ',scrollbars=yes,resizable=yes,status=yes");'."\n". "}\n\n"; $js .= "function comp_in_new(comp_uri) {\n". " if (!comp_uri) {\n". @@ -175,7 +175,7 @@ function displayPageHeader($color, $mailbox, $xtra='', $session=false) { ' var newwin = window.open(comp_uri' . ', "_blank",'. '"width='.$compose_width. ',height='.$compose_height. - ',scrollbars=yes,resizable=yes");'."\n". + ',scrollbars=yes,resizable=yes,status=yes");'."\n". "}\n\n"; } @@ -272,13 +272,13 @@ function displayPageHeader($color, $mailbox, $xtra='', $session=false) { $compose_height = '550'; } $js .= "function comp_in_new(comp_uri) {\n". - " if (!comp_uri) {\n". - ' comp_uri = "'.$compose_uri."\";\n". - ' }'. "\n". + " if (!comp_uri) {\n". + ' comp_uri = "'.$compose_uri."\";\n". + ' }'. "\n". ' var newwin = window.open(comp_uri' . ', "_blank",'. '"width='.$compose_width. ',height='.$compose_height. - ',scrollbars=yes,resizable=yes");'."\n". + ',scrollbars=yes,resizable=yes,status=yes");'."\n". "}\n\n"; }