Ignore:
Timestamp:
05/03/12 10:16:17 (12 years ago)
Author:
thiago
Message:

Ticket #2679 - Ao selecionar uma organização, apresentava um erro no console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoAdmin1_2/js/jscode/configurations.js

    r5144 r6082  
    291291    var SelectResults = document.getElementById(pSelectResult); 
    292292 
    293     if(pClearSearch) 
    294         txtSearch.value = ''; 
    295  
     293    if(pClearSearch){ 
     294        if(txtSearch) 
     295                        txtSearch.value = ''; 
     296        } 
     297         
    296298    for(var i = 0;i < SelectResults.options.length; i++) 
    297299         SelectResults.options[i--] = null; 
     
    316318 
    317319    if( event && event.keyCode !== 13 ) 
    318         return( true ); 
     320        return true; 
    319321 
    320322    findUsersInLdap( obj.id, numMin ); 
    321323 
    322     return( false ); 
     324    return false; 
    323325} 
    324326 
Note: See TracChangeset for help on using the changeset viewer.