Mercurial > hg > isophonics-drupal-site
diff core/modules/locale/locale.bulk.es6.js @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children |
line wrap: on
line diff
--- a/core/modules/locale/locale.bulk.es6.js Tue Jul 10 15:07:59 2018 +0100 +++ b/core/modules/locale/locale.bulk.es6.js Thu Feb 28 13:21:36 2019 +0000 @@ -3,7 +3,7 @@ * Locale behavior. */ -(function ($, Drupal) { +(function($, Drupal) { /** * Select the language code of an imported file based on its filename. * @@ -19,16 +19,20 @@ 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);