Ignore:
Timestamp:
08/30/12 17:31:53 (12 years ago)
Author:
gustavo
Message:

Ticket #3084 - Problema ao criar uma nova mensagem (destinatário)

File:
1 edited

Legend:

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

    r7134 r7135  
    37763776        if($.trim(input_data) != ""){ 
    37773777                var box_data = valid_emails(input_data); 
    3778                 DataLayer.render("../prototype/modules/mail/templates/emailBox.ejs", box_data, function(html){ 
    3779                         var newBox = location.before(html).prev(); 
    3780                         box_actions(newBox); 
    3781                         if((preferences.expressoMail_ldap_identifier_recipient || personal)&& $(newBox).hasClass("invalid-email-box")){ 
    3782                                 //$(newBox).find(".loading").css("background-image", "../prototype/modules/mail/img/ajax-loader.gif"); 
    3783                                 show_detais(newBox, input_data, personal, shared); 
    3784                         }else{ 
    3785                                 $(newBox).find(".box-loading").remove(); 
    3786                         } 
    3787                 }); 
     3778                var html = DataLayer.render("../prototype/modules/mail/templates/emailBox.ejs", box_data); 
     3779                var newBox = location.before(html).prev(); 
     3780                box_actions(newBox); 
     3781                if((preferences.expressoMail_ldap_identifier_recipient || personal)&& $(newBox).hasClass("invalid-email-box")){ 
     3782                        //$(newBox).find(".loading").css("background-image", "../prototype/modules/mail/img/ajax-loader.gif"); 
     3783                        show_detais(newBox, input_data, personal, shared); 
     3784                }else{ 
     3785                        $(newBox).find(".box-loading").remove(); 
     3786                } 
    37883787        } 
    37893788} 
Note: See TracChangeset for help on using the changeset viewer.