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 8c2a14a commit f5acec8Copy full SHA for f5acec8
web/js/app.js
@@ -1042,12 +1042,12 @@ hover_menu = function() {
1042
function checkedAll(frmname) {
1043
if ($('.l-unit.selected:not(.header)').length > 0) {
1044
$('.l-unit:not(.header)').removeClass("selected");
1045
- $('.ch-toggle').attr("checked", false);
+ $('.ch-toggle').prop("checked", false);
1046
$('.toggle-all').removeClass('clicked-on');
1047
}
1048
else {
1049
$('.l-unit:not(.header)').addClass("selected");
1050
- $('.ch-toggle').attr("checked", true);
+ $('.ch-toggle').prop("checked", true);
1051
$('.toggle-all').addClass('clicked-on');
1052
1053
0 commit comments