Changeset 5600


Ignore:
Timestamp:
03/01/12 14:50:57 (12 years ago)
Author:
angelo
Message:

Ticket #2485 - Otimizar acao de criar nova mensagem ou encaminhar

File:
1 edited

Legend:

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

    r5592 r5600  
    38193819        var cc_load = ""; 
    38203820        a_cc_link.onclick = function () { 
     3821                var rm = false; 
    38213822                var remove = function(){ 
    38223823                        document.getElementById('tr_cc_'+ID).style.display = 'none'; 
     
    38243825                        $("#cc_"+ID).val(""); 
    38253826                        $("#a_cc_link_"+ID).toggleClass("expressomail-button-icon-ative"); 
     3827                        rm = true; 
    38263828                } 
    38273829                if(!($("#cc_"+ID).parent().find("div")[0])){ 
     
    38433845                        } 
    38443846                } 
    3845                 input_cc.focus(); 
    3846                  
     3847                if (rm)  
     3848                        input_to.focus();  
     3849                else      
     3850                        input_cc.focus();                
    38473851                return false; 
    38483852        }; 
     
    41734177                $("#"+$(this).attr("name")).attr("checked", (!check ? true : false)); 
    41744178                //$(this).button({ disabled: false }); 
     4179                if (RichTextEditor.plain[id] != true)  
     4180                        setTimeout("RichTextEditor.focus("+ID+")",100);                   
     4181                else   
     4182                        $('#body_'+ID).focus(); 
    41754183        }); 
    41764184         
Note: See TracChangeset for help on using the changeset viewer.