Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / node / node.js
index 086263d2a8e476edb6c1fa89f88f0b3d87f87b8d..fc2da8818307f96ab83a683e7ad9af5580075933 100644 (file)
@@ -1,22 +1,13 @@
 /**
- * @file
- * Defines Javascript behaviors for the node module.
- */
+* DO NOT EDIT THIS FILE.
+* See the following change record for more information,
+* https://www.drupal.org/node/2815083
+* @preserve
+**/
 
 (function ($, Drupal, drupalSettings) {
-
-  'use strict';
-
-  /**
-   * Behaviors for tabs in the node edit form.
-   *
-   * @type {Drupal~behavior}
-   *
-   * @prop {Drupal~behaviorAttach} attach
-   *   Attaches summary behavior for tabs in the node edit form.
-   */
   Drupal.behaviors.nodeDetailsSummaries = {
-    attach: function (context) {
+    attach: function attach(context) {
       var $context = $(context);
 
       $context.find('.node-form-author').drupalSetSummary(function (context) {
         var date = $authorContext.find('.field--name-created input').val();
 
         if (name && date) {
-          return Drupal.t('By @name on @date', {'@name': name, '@date': date});
-        }
-        else if (name) {
-          return Drupal.t('By @name', {'@name': name});
-        }
-        else if (date) {
-          return Drupal.t('Authored on @date', {'@date': date});
+          return Drupal.t('By @name on @date', { '@name': name, '@date': date });
+        } else if (name) {
+          return Drupal.t('By @name', { '@name': name });
+        } else if (date) {
+          return Drupal.t('Authored on @date', { '@date': date });
         }
       });
 
           });
           return vals.join(', ');
         }
-        else {
-          return Drupal.t('Not promoted');
-        }
+
+        return Drupal.t('Not promoted');
       });
     }
   };
-
-})(jQuery, Drupal, drupalSettings);
+})(jQuery, Drupal, drupalSettings);
\ No newline at end of file