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.
2 parents 69eb654 + afeebb4 commit 7341205Copy full SHA for 7341205
codespeed/static/js/codespeed.js
@@ -28,15 +28,15 @@ $(function() {
28
$('.checkall').each(function() {
29
var inputs = $(this).parent().children("li").children("input");
30
$(this).click(function() {
31
- inputs.attr("checked", true);
+ inputs.prop("checked", true);
32
return false;
33
});
34
35
36
$('.uncheckall').each(function() {
37
38
39
- inputs.attr("checked", false);
+ inputs.prop("checked", false);
40
41
42
0 commit comments