Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / book / book.js
index 2cc788126479f4baf475416aa477bbb5fe88f478..9000c932582c39e44541736d01eaa0279ec1ea13 100644 (file)
@@ -1,37 +1,25 @@
 /**
- * @file
- * Javascript behaviors for the Book module.
- */
+* DO NOT EDIT THIS FILE.
+* See the following change record for more information,
+* https://www.drupal.org/node/2815083
+* @preserve
+**/
 
 (function ($, Drupal) {
-
-  'use strict';
-
-  /**
-   * Adds summaries to the book outline form.
-   *
-   * @type {Drupal~behavior}
-   *
-   * @prop {Drupal~behaviorAttach} attach
-   *   Attaches summary behavior to book outline forms.
-   */
   Drupal.behaviors.bookDetailsSummaries = {
-    attach: function (context) {
+    attach: function attach(context) {
       $(context).find('.book-outline-form').drupalSetSummary(function (context) {
         var $select = $(context).find('.book-title-select');
         var val = $select.val();
 
         if (val === '0') {
           return Drupal.t('Not in book');
-        }
-        else if (val === 'new') {
+        } else if (val === 'new') {
           return Drupal.t('New book');
         }
-        else {
-          return Drupal.checkPlain($select.find(':selected').text());
-        }
+
+        return Drupal.checkPlain($select.find(':selected').text());
       });
     }
   };
-
-})(jQuery, Drupal);
+})(jQuery, Drupal);
\ No newline at end of file