diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-11 22:19:46 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-11 22:19:46 +0000 |
commit | e888f0061cb7ca2f07b38ad4ff09da99faa75580 (patch) | |
tree | b1ffa36ead61e0061e99fdb4c33a8ea823eb4af5 /modules/comment | |
parent | f278da9e50815f279ce4c7bda993f5d21b43efa3 (diff) | |
download | brdo-e888f0061cb7ca2f07b38ad4ff09da99faa75580.tar.gz brdo-e888f0061cb7ca2f07b38ad4ff09da99faa75580.tar.bz2 |
#323112 by dmitrig01, kkaefer, quicksketch, frando and many many more: Now presenting... Vertical Tabs. Fantastic new UI improvement for node forms and hopefully more in the future.
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment-node-form.js | 13 | ||||
-rw-r--r-- | modules/comment/comment.module | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/modules/comment/comment-node-form.js b/modules/comment/comment-node-form.js new file mode 100644 index 000000000..9c7dea7cc --- /dev/null +++ b/modules/comment/comment-node-form.js @@ -0,0 +1,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); diff --git a/modules/comment/comment.module b/modules/comment/comment.module index e00057506..6c7e582fa 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -580,6 +580,8 @@ function comment_form_alter(&$form, $form_state, $form_id) { '#title' => t('Comment settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, + '#group' => 'additional_settings', + '#attached_js' => array(drupal_get_path('module', 'comment') . '/comment-node-form.js'), '#weight' => 30, ); $comment_count = isset($node->nid) ? db_query('SELECT comment_count FROM {node_comment_statistics} WHERE nid = :nid', array(':nid' => $node->nid))->fetchField() : 0; |