Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / locale / locale.bulk.es6.js
index 4fe32c3470fa3ba22ff4910fc4c442ae9ea6ed6f..db94cef7fea3feeae585e138697f3bbb06629fa1 100644 (file)
@@ -3,7 +3,7 @@
  * Locale behavior.
  */
 
-(function ($, Drupal) {
+(function($, Drupal) {
   /**
    * Select the language code of an imported file based on its filename.
    *
       const $form = $('#locale-translate-import-form').once('autodetect-lang');
       if ($form.length) {
         const $langcode = $form.find('.langcode-input');
-        $form.find('.file-import-input')
-          .on('change', function () {
-            // If the filename is fully the language code or the filename
-            // ends with a language code, pre-select that one.
-            const matches = $(this).val().match(/([^.][.]*)([\w-]+)\.po$/);
-            if (matches && $langcode.find(`option[value="${matches[2]}"]`).length) {
-              $langcode.val(matches[2]);
-            }
-          });
+        $form.find('.file-import-input').on('change', function() {
+          // If the filename is fully the language code or the filename
+          // ends with a language code, pre-select that one.
+          const matches = $(this)
+            .val()
+            .match(/([^.][.]*)([\w-]+)\.po$/);
+          if (
+            matches &&
+            $langcode.find(`option[value="${matches[2]}"]`).length
+          ) {
+            $langcode.val(matches[2]);
+          }
+        });
       }
     },
   };
-}(jQuery, Drupal));
+})(jQuery, Drupal);