function comment_library_info

Implements hook_library_info().

File

drupal/core/modules/comment/comment.module, line 2076
Enables users to comment on published content.

Code

function comment_library_info() {
  $libraries['drupal.comment'] = array(
    'title' => 'Comment',
    'version' => VERSION,
    'js' => array(
      drupal_get_path('module', 'comment') . '/comment-node-form.js' => array(),
    ),
    'dependencies' => array(
      array(
        'system',
        'jquery',
      ),
      array(
        'system',
        'drupal',
      ),
      array(
        'system',
        'drupal.form',
      ),
    ),
  );
  return $libraries;
}