updated js.cookie.js

This commit is contained in:
2021-04-08 10:13:13 +01:00
parent 9ff8752e26
commit fc5600d75c
3 changed files with 123 additions and 124 deletions

View File

@@ -111,7 +111,7 @@ $(document).ready(function() {
}
$('table tr td:first-child input').each(function(chkbx) {
row = $(this);
if (row.prop('checked') != cb.prop('checked')){
if (row.prop('checked') !== cb.prop('checked')){
row.click();
}
});