Ignore:
Timestamp:
08/30/12 18:23:00 (12 years ago)
Author:
eduardow
Message:

Ticket #3084 - Problema ao criar uma nova mensagem(destinatario).

File:
1 edited

Legend:

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

    r7140 r7141  
    36223622        if($.trim(input_data) != ""){ 
    36233623                var box_data = valid_emails(input_data); 
    3624                 DataLayer.render("../prototype/modules/mail/templates/emailBox.ejs", box_data, function(html){ 
    3625                         var newBox = location.before(html).prev(); 
    3626                         box_actions(newBox); 
    3627                         if((preferences.expressoMail_ldap_identifier_recipient || personal)&& $(newBox).hasClass("invalid-email-box")){ 
    3628                                 //$(newBox).find(".loading").css("background-image", "../prototype/modules/mail/img/ajax-loader.gif"); 
    3629                                 show_detais(newBox, input_data, personal, shared); 
    3630                         }else{ 
    3631                                 $(newBox).find(".box-loading").remove(); 
    3632                         } 
    3633                 }); 
     3624                var html = DataLayer.render("../prototype/modules/mail/templates/emailBox.ejs", box_data);  
     3625            var newBox = location.before(html).prev();  
     3626            box_actions(newBox);  
     3627            if((preferences.expressoMail_ldap_identifier_recipient || personal)&& $(newBox).hasClass("invalid-email-box")){  
     3628                    //$(newBox).find(".loading").css("background-image", "../prototype/modules/mail/img/ajax-loader.gif");  
     3629                    show_detais(newBox, input_data, personal, shared);  
     3630            }else{  
     3631                    $(newBox).find(".box-loading").remove();  
     3632            } 
    36343633        } 
    36353634} 
Note: See TracChangeset for help on using the changeset viewer.