Changeset 7198


Ignore:
Timestamp:
09/13/12 10:27:44 (12 years ago)
Author:
douglasz
Message:

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

File:
1 edited

Legend:

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

    r7145 r7198  
    40034003                var pthis = $(this); 
    40044004                setTimeout(function() { 
    4005                         if(pthis.val().split('"').length > 1) 
    4006                                 var str = pthis.val().replace(/[,;\t]/gi, ",");  
    4007                         else 
     4005                        if(pthis.val().split('"').length > 1){ 
     4006                                var str = break_comma(pthis.val());//.replace(/[,;\t]/gi, ",");  
     4007                        }else{ 
    40084008                                var str = pthis.val().replace(/[,;\t\n]/gi, ","); 
    4009                         str = str.split(","); 
     4009                                str = str.split(","); 
     4010                        } 
    40104011 
    40114012                        if(str.length != 1){ 
Note: See TracChangeset for help on using the changeset viewer.