updated core to 8.6.1 via composer

This commit is contained in:
2018-09-12 13:58:26 +02:00
parent a9a219f2ed
commit ea56b9fba3
4443 changed files with 112098 additions and 40708 deletions
+14 -9
View File
@@ -3,7 +3,7 @@
* Language admin behavior.
*/
(function ($, Drupal) {
(function($, Drupal) {
/**
* Makes language negotiation inherit user interface negotiation.
*
@@ -21,19 +21,24 @@
const $checkbox = $(checkbox);
// Get the language detection type such as Interface text language
// detection or Content language detection.
$checkbox.closest('.table-language-group')
$checkbox
.closest('.table-language-group')
.find('table, .tabledrag-toggle-weight')
.toggle($checkbox.prop('checked'));
}
// Bind hide/show and rearrange customization checkboxes.
$configForm.once('negotiation-language-admin-bind').on('change', inputSelector, (event) => {
toggleTable(event.target);
});
$configForm
.once('negotiation-language-admin-bind')
.on('change', inputSelector, event => {
toggleTable(event.target);
});
// Initially, hide language detection types that are not customized.
$configForm.find(`${inputSelector}:not(:checked)`).each((index, element) => {
toggleTable(element);
});
$configForm
.find(`${inputSelector}:not(:checked)`)
.each((index, element) => {
toggleTable(element);
});
},
};
}(jQuery, Drupal));
})(jQuery, Drupal);