Changeset 279


Ignore:
Timestamp:
05/05/08 15:17:24 (16 years ago)
Author:
niltonneto
Message:

Correção de bug da versão 1.2211.

File:
1 edited

Legend:

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

    r271 r279  
    55                'toPreserve' : [] // Check if the message should be removed from draft after send 
    66                }; 
    7                  
    8 var defaultDraftFolder = ''; 
    97 
    108function cRichTextEditor(){ 
     
    228226                                mainField.document.execCommand('inserthtml', false, option); 
    229227                        } 
    230                 else // command == Image 
     228                else if (command == 'Image') 
    231229                        mainField.document.execCommand('InsertImage', false, option); 
     230                else 
     231                        mainField.document.execCommand(command, false, option); 
    232232                //mainField.focus(); 
    233233    } catch (e) { alert(e.description); } 
Note: See TracChangeset for help on using the changeset viewer.