Ignore:
Timestamp:
12/13/11 15:07:10 (12 years ago)
Author:
clairson
Message:

Ticket #2380 - Inserir tooltip de informacao dos atalhos das setas de navegacao entre mensagens

File:
1 edited

Legend:

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

    r5241 r5249  
    16041604        img_next_msg.id = 'msg_opt_next_' + ID; 
    16051605        img_next_msg.src = './templates/'+template+'/images/down.button.png'; 
    1606         img_next_msg.title = get_lang('Next'); 
     1606        if(preferences.use_shortcuts == '1') 
     1607            img_next_msg.title = get_lang('Next Shortcut:Control + Down'); 
     1608        else 
     1609            img_next_msg.title = get_lang('Next'); 
    16071610        img_next_msg.style.cursor = 'pointer'; 
    16081611 
     
    16571660        img_previous_msg.id = 'msg_opt_previous_' + ID; 
    16581661        img_previous_msg.src = './templates/'+template+'/images/up.button.png'; 
    1659         img_previous_msg.title = get_lang('Previous'); 
     1662        if(preferences.use_shortcuts == '1') 
     1663            img_previous_msg.title = get_lang('Previous Shortcut:Control + Up'); 
     1664        else 
     1665            img_previous_msg.title = get_lang('Previous'); 
    16601666        img_previous_msg.style.cursor = 'pointer'; 
    16611667 
Note: See TracChangeset for help on using the changeset viewer.