Skip to content

Commit 6cc5287

Browse files
committed
popover ignore checkboxes
1 parent 773c9b3 commit 6cc5287

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

intranet/static/js/eighth/admin.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,11 @@ $(function() {
112112
var $checkboxes = $blocksOfType.find("input[type='checkbox']");
113113
// Ignore special and unschedule checkbox
114114
$checkboxes.each(function() {
115-
if(!$(this).hasClass("special") && !$(this).hasClass("unschedule")) {
115+
if(!$(this).hasClass("special") &&
116+
!$(this).hasClass("administrative") &&
117+
!$(this).hasClass("restricted") &&
118+
!$(this).hasClass("sticky") &&
119+
!$(this).hasClass("unschedule")) {
116120
$(this).prop("checked", true);
117121
}
118122
});

0 commit comments

Comments
 (0)