Ignore:
Timestamp:
11/16/12 16:35:59 (11 years ago)
Author:
thiago
Message:

Ticket #3186 - Problema no salvamento e problema ao abrir uma msg apos salvar.

File:
1 edited

Legend:

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

    r7525 r7526  
    22482248//It is verifying if the message was modified or not. 
    22492249var btnSaveVerify = function(){ 
    2250     $("#content_id_"+currentTab+" .save").button("disable") 
    2251  
    2252  
    2253     $("#content_id_"+currentTab+" .to").keydown(function() {   
     2250    $("#content_id_"+currentTab+" .save").button("disable"); 
     2251 
     2252    dataBtn = new Array(".to",".cc",".cco","input[name=input_subject]",".reply-to"); 
     2253 
     2254    for(var i in dataBtn){ 
     2255      $("#content_id_"+currentTab+" "+dataBtn[i]).keydown(function() {   
    22542256        $("#content_id_"+currentTab+" .save").button("enable"); 
    2255      } ); 
    2256     $("#content_id_"+currentTab+" input[name=input_subject]").keydown(function() {   
    2257         $("#content_id_"+currentTab+" .save").button("enable"); 
    2258      } ); 
     2257      }); 
     2258    } 
    22592259 
    22602260    RichTextEditor.keydown(new_border_ID); 
     
    33933393        saveButtonDisabled = $("#content_id_"+ID).find(".save").button('option','disabled'); 
    33943394    if(autoSaveControl.status[ID] === false && !saveButtonDisabled) 
    3395         save_msg(ID);          
     3395        save_msg(ID); 
     3396    refresh(); 
    33963397} 
    33973398 
Note: See TracChangeset for help on using the changeset viewer.