diff --git a/themes/bootstrap3/js/common.js b/themes/bootstrap3/js/common.js index fcd3fe6fb545820e22a4782be84bc886cb1b1372..043b0be5e9dc17918959189988dd3429e989dcec 100644 --- a/themes/bootstrap3/js/common.js +++ b/themes/bootstrap3/js/common.js @@ -351,7 +351,7 @@ $(document).ready(function commonDocReady() { // Checkbox select all $('.checkbox-select-all').change(function selectAllCheckboxes() { - var $form = $(this).closest('form') + var $form = $(this).closest('form'); $form.find('.checkbox-select-item').prop('checked', this.checked); $('[form="' + $form.attr('id') + '"]').prop('checked', this.checked); });