Ignore:
Timestamp:
04/12/11 14:50:19 (13 years ago)
Author:
brunocosta
Message:

Ticket #1604 - Criada preferencia para confirmação de leitura padrão.

File:
1 edited

Legend:

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

    r3993 r3994  
    26842684        input_return_receipt.className = "checkbox"; 
    26852685        input_return_receipt.id = "return_receipt_"+ID; 
     2686 
     2687        if(preferences.return_recipient_deafault != '0'){ 
     2688             if (is_ie){ 
     2689                input_return_receipt.checked=true; 
     2690             }  
     2691             else{ 
     2692                input_return_receipt.defaultChecked=true; 
     2693             } 
     2694        } 
     2695 
    26862696        input_return_receipt.setAttribute("tabIndex","-1"); 
    26872697        td_return_receipt.appendChild(input_return_receipt); 
Note: See TracChangeset for help on using the changeset viewer.