From f563a7c2c32b1241ce73b4a6f412fe466f933254 Mon Sep 17 00:00:00 2001 From: roundcube Date: Mon, 1 May 2006 19:07:10 +0000 Subject: Fixed Opera bug with CC and BCC fields git-svn-id: https://svn.roundcube.net/trunk@217 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/skins/default/templates/compose.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/skins/default/templates/compose.html b/roundcubemail/skins/default/templates/compose.html index 0630a5713..e827a024a 100644 --- a/roundcubemail/skins/default/templates/compose.html +++ b/roundcubemail/skins/default/templates/compose.html @@ -13,7 +13,7 @@ function rcmail_toggle_display(id) var row, disp; if (row = document.getElementById(id)) { - disp = (!row.style.display || row.style.display=='none') ? (document.all ? 'block' : 'table-row') : 'none'; + disp = (!row.style.display || row.style.display=='none') ? ((document.all && !window.opera) ? 'block' : 'table-row') : 'none'; row.style.display = disp; } -- cgit v1.2.3