summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-05-01 19:07:10 +0000
committerroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-05-01 19:07:10 +0000
commitf563a7c2c32b1241ce73b4a6f412fe466f933254 (patch)
tree04bc9c51a4e003fcb6f6919687498e3288dfd143
parente215c103b568927321cf571f03c05c0385fc80f6 (diff)
Fixed Opera bug with CC and BCC fields
git-svn-id: https://svn.roundcube.net/trunk@217 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/skins/default/templates/compose.html2
1 files changed, 1 insertions, 1 deletions
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;
}