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:
parent
a5b410130e
commit
316426c670
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user