Ignore:
Timestamp:
11/03/11 13:24:28 (12 years ago)
Author:
wmerlotto
Message:

Ticket #2305 - Enviando alteracoes, desenvolvidas internamente na Prognus, do modulo ExpressoMail?.

File:
1 edited

Legend:

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

    r4787 r5134  
    2323                } 
    2424                 
    25                 var ele = opt.target 
     25                var ele = opt.target; 
    2626                if(typeof opt.target == 'string') ele = document.getElementById(opt.target); 
    2727                var ths = this; 
     
    266266shortcut.add("E",function(){exec_msg_action('forward');},{'disable_in_input':true}); 
    267267shortcut.add("R",function(){exec_msg_action('reply');},{'disable_in_input':true}); 
     268shortcut.add("T",function(){ var msg_id = get_msg_id(); if(msg_id) new_message("reply_to_all_with_history",msg_id);},{'disable_in_input':true}); 
    268269shortcut.add("O",function(){show_head_option();},{'disable_in_input':true}); 
    269270shortcut.add("M",function(){show_address_full();},{'disable_in_input':true}); 
     
    362363else 
    363364{ 
    364         shortcut.add("down",function(){select_msg('null', 'down');},{'type':'keypress', 'disable_in_input':false}); 
    365         shortcut.add("up",function(){select_msg('null', 'up');},{'type':'keypress', 'disable_in_input':false}); 
     365        shortcut.add("Up",function(){select_msg('null', 'up', true);},{'disable_in_input':false}); 
     366        shortcut.add("Down",function(){select_msg('null', 'down', true);},{'disable_in_input':false}); 
    366367         
    367368        shortcut.add("Shift+down",function(){ 
Note: See TracChangeset for help on using the changeset viewer.