Changeset 4296


Ignore:
Timestamp:
05/09/11 19:26:40 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1726 - Corrigindo bloqueio ao redigir e-mails após mudar de aba. r4285

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/expressoMail1_2/js/rich_text_editor.js

    r4268 r4296  
    5353                config_events( iframe, 'onload', function( ) 
    5454                { 
    55                         if ( iframe.contentWindow.document.body && iframe.contentWindow.document.body.contentEditable ) 
    56                                 iframe.contentWindow.document.body.contentEditable = true; 
     55                        if ( iframe.contentWindow.document.body && iframe.contentWindow.document.body.contentEditable ) { 
     56 
     57                                if(mobile_device) 
     58                                    iframe.contentWindow.document.body.contentEditable = true; 
     59                                else 
     60                                    iframe.contentWindow.document.designMode = "on"; 
     61                        } 
    5762 
    5863                        if ( iframe.contentWindow.document.documentElement ){ 
Note: See TracChangeset for help on using the changeset viewer.