Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / pathauto / pathauto.js
1 (function ($) {
2   'use strict';
3   Drupal.behaviors.pathFieldsetSummaries = {
4     attach: function (context) {
5       $('fieldset.path-form', context).drupalSetSummary(function (context) {
6         var path = $('.form-item-path-alias input', context).val();
7         var automatic = $('.form-item-path-pathauto input', context).attr('checked');
8
9         if (automatic) {
10           return Drupal.t('Automatic alias');
11         }
12         else if (path) {
13           return Drupal.t('Alias: @alias', {'@alias': path});
14         }
15         else {
16           return Drupal.t('No alias');
17         }
18       });
19     }
20   };
21 })(jQuery);