summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/comment/comment-entity-form.js
blob: 8121e464b3df75aa06a24ecf52e7762c6ac2e639 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* DO NOT EDIT THIS FILE.
* All changes should be applied to ./modules/comment/comment-entity-form.es6.js
* See the following change record for more information,
* https://www.drupal.org/node/2873849
* @preserve
**/

(function ($, Drupal) {

  'use strict';

  Drupal.behaviors.commentFieldsetSummaries = {
    attach: function attach(context) {
      var $context = $(context);
      $context.find('fieldset.comment-entity-settings-form').drupalSetSummary(function (context) {
        return Drupal.checkPlain($(context).find('.js-form-item-comment input:checked').next('label').text());
      });
    }
  };
})(jQuery, Drupal);