Ignore:
Timestamp:
01/14/09 16:05:20 (15 years ago)
Author:
niltonneto
Message:

resolve #369, e também faz algumas alterações desejáveis para #351

File:
1 edited

Legend:

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

    r389 r607  
    1 var newMessageTab = { 
    2                 'imapUid' : [], // Stores the imap email number of current tab 
    3                 'countFile' : [0,0,0,0,0,0,0,0,0,0], // Stores the number of files attached in current tab 
    4                 'imapBox' : [], // Stores the folder name 
    5                 'toPreserve' : [] // Check if the message should be removed from draft after send 
    6                 }; 
    7  
    81function cRichTextEditor(){ 
    92        this.emwindow   = new Array; 
     
    303296 
    304297        RichTextEditor.saveFlag = 0; // See if save function finished 
    305         var save_link = document.getElementById("save_message_options"); 
     298        var save_link = document.getElementById("save_message_options_"+id); 
    306299        //save_link.onclick = function () {}; 
    307300        save_msg(id); 
     
    314307        else 
    315308                if (RichTextEditor.saveFlag == 1) 
    316                         this.editorCommand('Image', './inc/show_embedded_attach.php?msg_folder=INBOX/'+draftsfolder+'&msg_num='+newMessageTab.imapUid[id]+'&msg_part='+(newMessageTab.countFile[id]+1)); 
     309                        this.editorCommand('Image', './inc/show_embedded_attach.php?msg_folder=INBOX/'+draftsfolder+'&msg_num='+openTab.imapUid[id]+'&msg_part='+(openTab.countFile[id]+1)); 
    317310                        // this.editorCommand('Image', '.inc/gotodownload.php?msg_folder="+msg_folder+"&msg_number="+msg_number+"&idx_file="+idx_file+"&msg_part="+msg_part+params')); 
    318311} 
Note: See TracChangeset for help on using the changeset viewer.