Fixed Opera bug with CC and BCC fields

release-0.6
thomascube 18 years ago
parent 326e87a5d6
commit 7e85e0a734

@ -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;
}

Loading…
Cancel
Save