Skip to content

Commit

Permalink
BUGFIX:
Browse files Browse the repository at this point in the history
- Fixes issue with CMS permissions checkbox, which won't un-toggle checked-checkboxes, after being clicked a 2nd time
  • Loading branch information
Russell Michell committed Sep 2, 2013
1 parent 5f0329c commit 0f1ae7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/PermissionCheckboxSetField.js
Expand Up @@ -77,8 +77,8 @@
});
} else {
checkboxes.each(function() {
$(this).attr('checked', '');
$(this).attr('disabled', '');
$(this).prop('checked', false);
$(this).prop('disabled', false);
});
}
}
Expand Down

0 comments on commit 0f1ae7a

Please sign in to comment.