Changeset 4037 for branches/2.2.0.1


Ignore:
Timestamp:
04/15/11 09:28:05 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1598 - Correção para os botões da busca por F9.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/expressoMail1_2/js/QuickCatalogSearch.js

    r4034 r4037  
    8484                        el_A.appendChild(butt); 
    8585 
     86                        var space = document.createElement('SPAN'); 
     87                        space.innerHTML = "  "; 
     88                        el_A.appendChild(space); 
     89 
     90                        var butt = document.createElement('BUTTON'); 
     91                        butt.id = "QuickCatalogSearch_button_add_contact"; 
     92                        var buttext = document.createTextNode(get_lang("Add Contact")); 
     93                        butt.appendChild(buttext); 
     94                        butt.onclick = func_add_contact; 
     95                        el_A.appendChild(butt); 
     96 
    8697                if (document.getElementById('select_QuickCatalogSearch') == null){ 
    8798                         
     
    117128                        }; 
    118129                        el.appendChild(cmb); 
    119                          
     130 
    120131                } 
    121132                else{ 
Note: See TracChangeset for help on using the changeset viewer.