diff core/modules/node/node.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 4c8ae668cc8c
children
line wrap: on
line diff
--- a/core/modules/node/node.es6.js	Tue Jul 10 15:07:59 2018 +0100
+++ b/core/modules/node/node.es6.js	Thu Feb 28 13:21:36 2019 +0000
@@ -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.
    *
@@ -16,30 +16,36 @@
     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);