summaryrefslogtreecommitdiff
path: root/modules/comment/comment-node-form.js
blob: 9c7dea7cc1eccf0166e6e32ad4163f35a5a48ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// $Id$

(function($) {

Drupal.behaviors.commentFieldsetSummaries = {
  attach: function(context) {
    $('fieldset#edit-comment-settings', context).setSummary(function(context) {
      return Drupal.checkPlain($('input:checked', context).parent().text());
    });
  }
};

})(jQuery);