123456789101112131415 |
- (function ($) {
- Drupal.behaviors.workflow_node_formFieldsetSummaries = {
- attach: function (context) {
-
- $('fieldset#edit-workflow', context).drupalSetSummary(function (context) {
- return Drupal.checkPlain($('.form-item-workflow-scheduled input:checked', context).next('label').text());
- });
- }
- };
- })(jQuery);
|