Ignore:
Timestamp:
11/03/11 13:24:28 (12 years ago)
Author:
wmerlotto
Message:

Ticket #2305 - Enviando alteracoes, desenvolvidas internamente na Prognus, do modulo ExpressoMail?.

File:
1 edited

Legend:

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

    r4304 r5134  
    7979        var REG_EXP = /^[^\#|^\$|^\%|^\!|^\?|^\"|^\']+$/; 
    8080        var match_cont = ""; 
    81         for (var i=0; i<match_contacts.length; i++) 
     81        var limit_index; 
     82         
     83        match_contacts.length > 30? limit_index = 30 : limit_index = match_contacts.length;  
     84         
     85        for (var i=0; i<limit_index; i++) 
    8286        { 
    8387                match_contacts[i] = unescape(match_contacts[i]);  
     
    9599        } 
    96100 
    97          
    98         if (document.getElementById('tipDiv')){  
    99                 document.getElementById('tipDiv').focus();  
    100         }  
    101  
     101    //Removido pois retirava o focus no ie      a cada letra digitada 
     102        //if (document.getElementById('tipDiv')){  
     103        //      document.getElementById('tipDiv').focus();  
     104        //}  
    102105 
    103106        // treat especials keys 
Note: See TracChangeset for help on using the changeset viewer.