Changeset 217 in subversion


Ignore:
Timestamp:
May 1, 2006 3:07:10 PM (7 years ago)
Author:
roundcube
Message:

Fixed Opera bug with CC and BCC fields

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/skins/default/templates/compose.html

    r214 r217  
    1414  if (row = document.getElementById(id)) 
    1515    { 
    16     disp = (!row.style.display || row.style.display=='none') ? (document.all ? 'block' : 'table-row') : 'none'; 
     16    disp = (!row.style.display || row.style.display=='none') ? ((document.all && !window.opera) ? 'block' : 'table-row') : 'none'; 
    1717    row.style.display = disp; 
    1818    } 
Note: See TracChangeset for help on using the changeset viewer.