From 75442b66c906c6a461b37d1b0533170eff121d46 Mon Sep 17 00:00:00 2001 From: jervfors Date: Tue, 10 Aug 2004 05:31:56 +0000 Subject: [PATCH] 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 --- functions/page_header.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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"; } -- 2.25.1