Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / path / path.js
1 /**
2 * DO NOT EDIT THIS FILE.
3 * See the following change record for more information,
4 * https://www.drupal.org/node/2815083
5 * @preserve
6 **/
7
8 (function ($, Drupal) {
9   Drupal.behaviors.pathDetailsSummaries = {
10     attach: function attach(context) {
11       $(context).find('.path-form').drupalSetSummary(function (context) {
12         var path = $('.js-form-item-path-0-alias input').val();
13
14         return path ? Drupal.t('Alias: @alias', { '@alias': path }) : Drupal.t('No alias');
15       });
16     }
17   };
18 })(jQuery, Drupal);