Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / media / js / form.js
diff --git a/web/core/modules/media/js/form.js b/web/core/modules/media/js/form.js
new file mode 100644 (file)
index 0000000..d033ec5
--- /dev/null
@@ -0,0 +1,28 @@
+/**
+* DO NOT EDIT THIS FILE.
+* See the following change record for more information,
+* https://www.drupal.org/node/2815083
+* @preserve
+**/
+
+(function ($, Drupal) {
+  Drupal.behaviors.mediaFormSummaries = {
+    attach: function attach(context) {
+      var $context = $(context);
+
+      $context.find('.media-form-author').drupalSetSummary(function (context) {
+        var $authorContext = $(context);
+        var name = $authorContext.find('.field--name-uid input').val();
+        var date = $authorContext.find('.field--name-created input').val();
+
+        if (name && date) {
+          return Drupal.t('By @name on @date', { '@name': name, '@date': date });
+        } else if (name) {
+          return Drupal.t('By @name', { '@name': name });
+        } else if (date) {
+          return Drupal.t('Authored on @date', { '@date': date });
+        }
+      });
+    }
+  };
+})(jQuery, Drupal);
\ No newline at end of file