We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773c9b3 commit 6cc5287Copy full SHA for 6cc5287
intranet/static/js/eighth/admin.js
@@ -112,7 +112,11 @@ $(function() {
112
var $checkboxes = $blocksOfType.find("input[type='checkbox']");
113
// Ignore special and unschedule checkbox
114
$checkboxes.each(function() {
115
- if(!$(this).hasClass("special") && !$(this).hasClass("unschedule")) {
+ if(!$(this).hasClass("special") &&
116
+ !$(this).hasClass("administrative") &&
117
+ !$(this).hasClass("restricted") &&
118
+ !$(this).hasClass("sticky") &&
119
+ !$(this).hasClass("unschedule")) {
120
$(this).prop("checked", true);
121
}
122
});
0 commit comments