Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / path / path.js
index dfa2c052a1af0f627cf30a70e5260a24808f2568..c50f2d7fd4eb4c57ee662420c87ad626f3d59051 100644 (file)
@@ -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