You are here

function itoggle_library in iToggle 7.3

Implements hook_library().

File

./itoggle.module, line 15
iToggle module.

Code

function itoggle_library() {
  return array(
    'itoggle' => array(
      'title' => 'iToggle',
      'website' => 'http://drupal.org/project/itoggle',
      'version' => ITOGGLE_VERSION,
      'js' => array(
        drupal_get_path('module', 'itoggle') . '/misc/itoggle.js' => array(),
      ),
      'css' => array(
        drupal_get_path('module', 'itoggle') . '/misc/itoggle.css' => array(),
      ),
    ),
  );
}