- Fixes issue with CMS permissions checkbox, which won't un-toggle checked-checkboxes, after being clicked a 2nd time
This commit is contained in:
Russell Michell 2013-08-23 15:30:16 +12:00
parent 5f0329c6f2
commit 0f1ae7a00b

View File

@ -77,8 +77,8 @@
});
} else {
checkboxes.each(function() {
$(this).attr('checked', '');
$(this).attr('disabled', '');
$(this).prop('checked', false);
$(this).prop('disabled', false);
});
}
}