From 7df0f31a5b6b344716a4bfa746965b36bebd6f7e Mon Sep 17 00:00:00 2001 From: ryan 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: http://svn.automattic.com/wordpress/trunk@9946 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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();