Changeset 8779

Show
Ignore:
Timestamp:
08/30/08 00:48:37 (3 months ago)
Author:
ryan
Message:

Don't process keypress if the current row is null. see #7643

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/js/jquery/jquery.table-hotkeys.js

    r8777 r8779  
    3838        var make_key_callback = function(expr) { 
    3939            return function() { 
     40                if ( null == $.table_hotkeys.current_row ) return false; 
    4041                var clickable = $(expr, $.table_hotkeys.current_row).filter(':visible'); 
    4142                if (!$($(clickable[0]).parent()[0]).is(':visible')) return false;