2009-04-11 22:19:46 +00:00
|
|
|
// $Id$
|
|
|
|
|
2009-04-27 20:19:38 +00:00
|
|
|
(function ($) {
|
2009-04-11 22:19:46 +00:00
|
|
|
|
|
|
|
Drupal.behaviors.commentFieldsetSummaries = {
|
2009-04-27 20:19:38 +00:00
|
|
|
attach: function (context) {
|
|
|
|
$('fieldset#edit-comment-settings', context).setSummary(function (context) {
|
2009-04-11 22:19:46 +00:00
|
|
|
return Drupal.checkPlain($('input:checked', context).parent().text());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|