You are here

function underscore_library in Underscore.js 7

Implements hook_library().

File

./underscore.module, line 20
Integrates the Underscore JS Library.

Code

function underscore_library() {
  $libraries['underscore'] = array(
    'title' => 'Underscore',
    'website' => 'http://documentcloud.github.com/underscore',
    'version' => '1.1.6',
    'js' => array(
      drupal_get_path('module', 'underscore') . '/lib/underscore-min.js' => array(
        'group' => JS_LIBRARY,
        'every_page' => TRUE,
        'weight' => -19,
      ),
    ),
  );
  return $libraries;
}