You are here

function fac_library in Fast Autocomplete 7

Implements hook_library().

File

./fac.module, line 113
This file contains the main functions of the Fast Autocomplete module.

Code

function fac_library() {
  $fac_path = drupal_get_path('module', 'fac');
  $libraries['fastautocomplete'] = array(
    'title' => 'Fast Autocomplete jQuery plugin',
    'website' => 'http://drupal.org/project/fac',
    'version' => 'n/a ',
    'js' => array(
      $fac_path . '/js/jquery.fastautocomplete.js' => array(),
    ),
  );
  return $libraries;
}