Merge pull request #2357 from phptek/cms-access-checkbox-toggle

BUGFIX: CMS permissions checkbox won't untoggle once selected
This commit is contained in:
Ingo Schommer 2013-09-02 03:15:34 -07:00
commit 1f84db1c54

View File

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