Skip to content
Snippets Groups Projects

Issue #3206944 by bbytyqi

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -25,7 +25,7 @@
// Click the hidden checkbox when the trigger is clicked.
const $input = $(event.currentTarget)
.closest('.js-click-to-select')
.find('.js-click-to-select-checkbox input');
.find('.js-click-to-select-checkbox input:not(:disabled)');
$input.prop('checked', !$input.prop('checked')).trigger('change');
});
Loading