Skip to content
Snippets Groups Projects
Commit 77f03842 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1886220 by damiankloip: Fixed views-admin.js 'select all' unchecking broken .

parent 9ad50642
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -866,7 +866,7 @@ Drupal.behaviors.viewsFilterConfigSelectAll.attach = function(context) {
// Uncheck the select all checkbox if any of the others are unchecked.
$('#views-ui-config-item-form div.form-type-checkbox').not($('.form-item-options-value-all')).find('input[type=checkbox]').each(function() {
$(this).click(function() {
if ($(this).is('checked') === 0) {
if ($(this).is('checked') === false) {
$('#edit-options-value-all').removeAttr('checked');
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment