Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / media / js / form.es6.js
index cb0da60dc8f986c3d301685d627d0ee531f0ae2d..e8ebb8d728204f3abedb771543712786bc77be54 100644 (file)
@@ -3,7 +3,7 @@
  * Defines Javascript behaviors for the media form.
  */
 
-(function ($, Drupal) {
+(function($, Drupal) {
   /**
    * Behaviors for summaries for tabs in the media edit form.
    *
     attach(context) {
       const $context = $(context);
 
-      $context.find('.media-form-author').drupalSetSummary((context) => {
+      $context.find('.media-form-author').drupalSetSummary(context => {
         const $authorContext = $(context);
         const name = $authorContext.find('.field--name-uid input').val();
         const date = $authorContext.find('.field--name-created input').val();
 
         if (name && date) {
-          return Drupal.t('By @name on @date', { '@name': name, '@date': date });
+          return Drupal.t('By @name on @date', {
+            '@name': name,
+            '@date': date,
+          });
         }
-        else if (name) {
+        if (name) {
           return Drupal.t('By @name', { '@name': name });
         }
-        else if (date) {
+        if (date) {
           return Drupal.t('Authored on @date', { '@date': date });
         }
       });
     },
   };
-}(jQuery, Drupal));
+})(jQuery, Drupal);