Changeset 3967


Ignore:
Timestamp:
04/11/11 09:45:07 (13 years ago)
Author:
diegomoreno
Message:

Ticket #1472 - expressoMail1_2 - Ajusta para funcionar a tecla F9 no Chrome.

File:
1 edited

Legend:

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

    r3954 r3967  
    627627// Draw the inbox and another folders 
    628628function draw_box(headers_msgs, msg_folder, alternate){ 
     629         
    629630        if (alternate) 
    630631                kill_current_box(); 
     
    633634                document.getElementById("border_table").width = "99.5%"; 
    634635 
     636         
    635637        openTab.content_id[numBox] = document.getElementById("content_id_"+numBox); 
    636638        openTab.content_id[numBox].innerHTML = ""; 
     
    22892291        { 
    22902292                input_replyto.rows = 2; 
    2291                 input_replyto.onkeypress = function (e) 
     2293                input_replyto.onkeydown = function (e) 
    22922294        { 
    22932295            if ((e.keyCode) == 120) //F9 
     
    24672469        { 
    24682470                input_cc.rows = 2; 
    2469                 input_cc.onkeypress = function (e) 
     2471                input_cc.onkeydown = function (e) 
    24702472                { 
    24712473                        if ((e.keyCode) == 120) //F9 
     
    25502552        { 
    25512553                input_cco.rows = 2; 
    2552                 input_cco.onkeypress = function (e) 
     2554                input_cco.onkeydown = function (e) 
    25532555                { 
    25542556                        if ((e.keyCode) == 120) //F9 
Note: See TracChangeset for help on using the changeset viewer.