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
This commit is contained in:
Ryan Boren 2008-11-28 19:06:59 +00:00
parent a5b410130e
commit 316426c670
1 changed files with 1 additions and 1 deletions

View File

@ -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();