Ignore:
Timestamp:
11/23/12 13:34:28 (11 years ago)
Author:
eduardow
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/expressoMail1_2/js/main.js

    r7558 r7560  
    20402040//It is verifying if the message was modified or not.  
    20412041var btnSaveVerify = function(){  
    2042     $("#content_id_"+currentTab+" .save").button("disable")  
     2042    $("#content_id_"+currentTab+" .save").button("disable");  
     2043                  
     2044    dataBtn = new Array(".to",".cc",".cco","input[name=input_subject]",".reply-to");  
    20432045  
    2044   
    2045     $("#content_id_"+currentTab+" .to").keydown(function() {    
     2046    for(var i in dataBtn){  
     2047      $("#content_id_"+currentTab+" "+dataBtn[i]).keydown(function() {    
    20462048        $("#content_id_"+currentTab+" .save").button("enable");  
    2047      } );  
    2048     $("#content_id_"+currentTab+" input[name=input_subject]").keydown(function() {    
    2049         $("#content_id_"+currentTab+" .save").button("enable");  
    2050      } );  
     2049      });  
     2050        }   
    20512051  
    20522052    RichTextEditor.keydown(new_border_ID);  
     
    31173117    saveButtonDisabled = $("#content_id_"+ID).find(".save").button('option','disabled');  
    31183118        if(autoSaveControl.status[ID] === false && !saveButtonDisabled) 
    3119         save_msg(ID);          
     3119        save_msg(ID);  
     3120        refresh();          
    31203121} 
    31213122 
Note: See TracChangeset for help on using the changeset viewer.