function text_library_info

Implements hook_library_info().

File

drupal/core/modules/text/text.module, line 13
Defines simple text field types.

Code

function text_library_info() {
  $libraries['drupal.text'] = array(
    'title' => 'Text',
    'version' => VERSION,
    'js' => array(
      drupal_get_path('module', 'text') . '/text.js' => array(),
    ),
    'dependencies' => array(
      array(
        'system',
        'jquery',
      ),
      array(
        'system',
        'jquery.once',
      ),
      array(
        'system',
        'drupal',
      ),
    ),
  );
  return $libraries;
}