From e547d93fdc34f25cfb82b649c340ad31725d0ad4 Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Wed, 2 Jan 2019 20:51:43 -0600 Subject: [PATCH] Only open bulk action with filter checkbox --- manage/bulk-actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage/bulk-actions.js b/manage/bulk-actions.js index f6032cff..ead18516 100644 --- a/manage/bulk-actions.js +++ b/manage/bulk-actions.js @@ -95,7 +95,7 @@ const bulk = { // total is undefined until initialized if (installed.dataset.total) { // ignore filter checkboxes - if (target.type === 'checkbox' && !target.dataset.filter && target.closest('#tools-wrapper, .entry')) { + if (target.type === 'checkbox' && target.closest('.toggle-all, .entry-filter')) { handleEvent.toggleBulkActions({hidden: false}); const bulk = $('#toggle-all-filters'); const state = target.checked;