Update Composer, update everything

This commit is contained in:
Oliver Davies 2018-11-23 12:29:20 +00:00
parent ea3e94409f
commit dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions

View file

@ -1,22 +1,13 @@
/**
* @file
* Defines Javascript behaviors for the node module.
*/
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/2815083
* @preserve
**/
(function ($, Drupal, drupalSettings) {
'use strict';
/**
* Behaviors for tabs in the node edit form.
*
* @type {Drupal~behavior}
*
* @prop {Drupal~behaviorAttach} attach
* Attaches summary behavior for tabs in the node edit form.
*/
Drupal.behaviors.nodeDetailsSummaries = {
attach: function (context) {
attach: function attach(context) {
var $context = $(context);
$context.find('.node-form-author').drupalSetSummary(function (context) {
@ -25,13 +16,16 @@
var date = $authorContext.find('.field--name-created input').val();
if (name && date) {
return Drupal.t('By @name on @date', {'@name': name, '@date': date});
return Drupal.t('By @name on @date', {
'@name': name,
'@date': date
});
}
else if (name) {
return Drupal.t('By @name', {'@name': name});
if (name) {
return Drupal.t('By @name', { '@name': name });
}
else if (date) {
return Drupal.t('Authored on @date', {'@date': date});
if (date) {
return Drupal.t('Authored on @date', { '@date': date });
}
});
@ -45,11 +39,9 @@
});
return vals.join(', ');
}
else {
return Drupal.t('Not promoted');
}
return Drupal.t('Not promoted');
});
}
};
})(jQuery, Drupal, drupalSettings);
})(jQuery, Drupal, drupalSettings);