Changeset 7782


Ignore:
Timestamp:
01/22/13 16:04:12 (11 years ago)
Author:
thiago
Message:

Ticket #3318 - Problema de marcar checkbox ao passar mouse sobre o label.

File:
1 edited

Legend:

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

    r7780 r7782  
    17131713                                containment: "#divAppbox" 
    17141714                        }).bind('contextmenu',function(event){ 
    1715                                 if (!(($(event.target).find('img').length > 0) && ($(event.target).hasClass('td-label')))){ 
     1715                                if (!($(event.target).hasClass('td-label'))){ 
    17161716                                        if($(this).find("input:checkbox").attr("checked") != "checked"){ 
    1717                                                 $(this).find("input:checkbox").trigger('click'); 
    1718                                                 $(this).addClass("selected_msg"); 
     1717 
     1718                        $(this).find("input:checkbox").trigger('click'); 
     1719                         
     1720                        $(this).addClass("selected_msg"); 
    17191721                                        } 
    17201722                                        updateSelectedMsgs($(this).find("input:checkbox").is(':checked'),$(this).attr("id")); 
Note: See TracChangeset for help on using the changeset viewer.