X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fbook%2Fbook.js;fp=web%2Fcore%2Fmodules%2Fbook%2Fbook.js;h=9000c932582c39e44541736d01eaa0279ec1ea13;hp=2cc788126479f4baf475416aa477bbb5fe88f478;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/book/book.js b/web/core/modules/book/book.js index 2cc788126..9000c9325 100644 --- a/web/core/modules/book/book.js +++ b/web/core/modules/book/book.js @@ -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