diff --git a/core/misc/tableselect.js b/core/misc/tableselect.js index fb82ec0..5789908 100644 --- a/core/misc/tableselect.js +++ b/core/misc/tableselect.js @@ -47,7 +47,7 @@ /** * @this {HTMLElement} */ - this.checked = state; + $(this).prop('checked', state); }); }; @@ -61,7 +61,7 @@ /** * @this {HTMLElement} */ - this.checked = event.target.checked; + $(this).prop('checked', event.target.checked); // Either add or remove the selected class based on the state of the // check all checkbox.