Changeset 4401


Ignore:
Timestamp:
05/12/11 17:03:28 (13 years ago)
Author:
niltonneto
Message:

Ticket #1868 - Corrige o envio de mail em dispositivos moveis.

Location:
trunk/expressoMail1_2/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/draw_api.js

    r4399 r4401  
    28082808                }; 
    28092809 
    2810                 text_plain = text_plain.parentNode.appendChild(input_checkbox);  
     2810                text_plain.parentNode.appendChild(input_checkbox); 
    28112811        } 
    28122812 
     
    28912891        resizeWindow(); 
    28922892 
    2893         if ( ! expresso_offline ) 
    2894         { 
    2895                 if ( mobile_device ) 
    2896                 { 
    2897                         text_plain.click( ); 
    2898                         text_plain.parentNode.style.display = 'none'; 
    2899                 } 
    2900         } 
    2901  
    29022893        return ID; 
    29032894} 
  • trunk/expressoMail1_2/js/main.js

    r4389 r4401  
    13791379        } 
    13801380 
     1381        if ( ! expresso_offline ) 
     1382        { 
     1383                if ( mobile_device ) 
     1384                { 
     1385                        var text_plain = document.getElementById( 'textplain_rt_checkbox_' + new_border_ID ); 
     1386                        text_plain.click( ); 
     1387                        text_plain.parentNode.style.display = 'none'; 
     1388                } 
     1389        } 
     1390 
    13811391        if (preferences.auto_save_draft == 1) 
    13821392        { 
Note: See TracChangeset for help on using the changeset viewer.