Skip to content

Commit 5ffe411

Browse files
committed
hotfix
1 parent dc889e2 commit 5ffe411

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

jquery.filters.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,8 +1008,11 @@
10081008
var start = $boxes.index(this);
10091009
var end = $boxes.index(lastChecked);
10101010

1011-
$boxes.slice(Math.min(start,end), Math.max(start,end)+ 1).prop('checked', lastChecked.checked);
1012-
1011+
$.each($boxes.slice(Math.min(start,end), Math.max(start,end)+ 1), function(){
1012+
if ($(this).is(":visible")) {
1013+
$(this).prop('checked', lastChecked.checked);
1014+
}
1015+
})
10131016
}
10141017

10151018
lastChecked = this;

0 commit comments

Comments
 (0)