Skip to content
Snippets Groups Projects
Commit af301762 authored by Chris Lawton's avatar Chris Lawton Committed by Todd Dembrey
Browse files

ensure batch actions bar is shown if checkboxes are selected on page load

parent d68b0682
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,11 @@
const $batchTitles = $('.js-batch-titles');
const activeClass = 'batch-actions-enabled';
$(window).on('load', function () {
toggleBatchActions();
updateCount();
});
$allCheckboxInput.change(function () {
if ($(this).is(':checked')) {
$checkbox.each(function () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment