From 316426c670df4359689f8072f41bd975a5990c51 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 28 Nov 2008 19:06:59 +0000 Subject: [PATCH] Don't filter_visible() when making key callbacks to accommodate hidden-until-hover actions. see #8386 git-svn-id: https://develop.svn.wordpress.org/trunk@9946 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/js/jquery/jquery.table-hotkeys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/js/jquery/jquery.table-hotkeys.js b/wp-includes/js/jquery/jquery.table-hotkeys.js index 6881e2a62f..515c8ace24 100644 --- a/wp-includes/js/jquery/jquery.table-hotkeys.js +++ b/wp-includes/js/jquery/jquery.table-hotkeys.js @@ -58,7 +58,7 @@ var make_key_callback = function(expr) { return function() { if ( null == $.table_hotkeys.current_row ) return false; - var clickable = $(expr, $.table_hotkeys.current_row).filter_visible(); + var clickable = $(expr, $.table_hotkeys.current_row); if (!clickable.length) return false; if (clickable.is('.'+destructive_class)) next_row() || prev_row(); clickable.click();