Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / node / node.es6.js
index 6d6beb92fbc0ec2cd3c52b183b97e7d3bf5d2f07..95f183a3ad8bfcbe6704094ef0f5bc65fceecf30 100644 (file)
@@ -3,7 +3,7 @@
  * Defines Javascript behaviors for the node module.
  */
 
-(function ($, Drupal, drupalSettings) {
+(function($, Drupal, drupalSettings) {
   /**
    * Behaviors for tabs in the node edit form.
    *
     attach(context) {
       const $context = $(context);
 
-      $context.find('.node-form-author').drupalSetSummary((context) => {
+      $context.find('.node-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 });
         }
       });
 
-      $context.find('.node-form-options').drupalSetSummary((context) => {
+      $context.find('.node-form-options').drupalSetSummary(context => {
         const $optionsContext = $(context);
         const vals = [];
 
         if ($optionsContext.find('input').is(':checked')) {
-          $optionsContext.find('input:checked').next('label').each(function () {
-            vals.push(Drupal.checkPlain($.trim($(this).text())));
-          });
+          $optionsContext
+            .find('input:checked')
+            .next('label')
+            .each(function() {
+              vals.push(Drupal.checkPlain($.trim($(this).text())));
+            });
           return vals.join(', ');
         }
 
@@ -47,4 +53,4 @@
       });
     },
   };
-}(jQuery, Drupal, drupalSettings));
+})(jQuery, Drupal, drupalSettings);