X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fpath%2Fpath.js;fp=web%2Fcore%2Fmodules%2Fpath%2Fpath.js;h=c50f2d7fd4eb4c57ee662420c87ad626f3d59051;hp=dfa2c052a1af0f627cf30a70e5260a24808f2568;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/path/path.js b/web/core/modules/path/path.js index dfa2c052a..c50f2d7fd 100644 --- a/web/core/modules/path/path.js +++ b/web/core/modules/path/path.js @@ -1,29 +1,18 @@ /** - * @file - * Attaches behaviors for the Path module. - */ -(function ($, Drupal) { - - 'use strict'; +* DO NOT EDIT THIS FILE. +* See the following change record for more information, +* https://www.drupal.org/node/2815083 +* @preserve +**/ - /** - * Behaviors for settings summaries on path edit forms. - * - * @type {Drupal~behavior} - * - * @prop {Drupal~behaviorAttach} attach - * Attaches summary behavior on path edit forms. - */ +(function ($, Drupal) { Drupal.behaviors.pathDetailsSummaries = { - attach: function (context) { + attach: function attach(context) { $(context).find('.path-form').drupalSetSummary(function (context) { var path = $('.js-form-item-path-0-alias input').val(); - return path ? - Drupal.t('Alias: @alias', {'@alias': path}) : - Drupal.t('No alias'); + return path ? Drupal.t('Alias: @alias', { '@alias': path }) : Drupal.t('No alias'); }); } }; - -})(jQuery, Drupal); +})(jQuery, Drupal); \ No newline at end of file