mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-25 01:06:56 +01:00
Fixed Opera bug with CC and BCC fields
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user