Changeset 7208 for branches


Ignore:
Timestamp:
09/14/12 08:54:58 (12 years ago)
Author:
eduardow
Message:

Ticket #3100 - Problema com virgula no campo Para, CC e Cco.

File:
1 edited

Legend:

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

    r7156 r7208  
    38493849                var pthis = $(this); 
    38503850                setTimeout(function() { 
    3851                         if(pthis.val().split('"').length > 1) 
    3852                         var str = pthis.val().replace(/[,;\t]/gi, ",");   
    3853                 else  
     3851                        if(pthis.val().split('"').length > 1){  
     3852                        var str = break_comma(pthis.val());//.replace(/[,;\t]/gi, ",");   
     3853                }else{  
    38543854                        var str = pthis.val().replace(/[,;\t\n]/gi, ","); 
    3855                         str = str.split(","); 
     3855                        str = str.split(",");  
     3856                    }  
     3857                     
    38563858                        if(str.length != 1){  
    38573859                    $.each(str, function(index, value){  
Note: See TracChangeset for help on using the changeset viewer.