Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / language / language.admin.es6.js
index 0c0bdf9b69a20de883733c99bfade6fcf5bceb0f..bb2074ff6cc2bda93ad3078be25bd91316cde4c6 100644 (file)
@@ -3,7 +3,7 @@
  * Language admin behavior.
  */
 
-(function ($, Drupal) {
+(function($, Drupal) {
   /**
    * Makes language negotiation inherit user interface negotiation.
    *
         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);