You are here

function fac_libraries_info in Fast Autocomplete 7

Implements hook_libraries_info().

File

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

Code

function fac_libraries_info() {
  $libraries['highlight'] = array(
    'name' => 'Highlight jQuery plugin',
    'vendor url' => 'http://bartaz.github.io/sandbox.js/jquery.highlight.html',
    'download url' => 'http://github.com/bartaz/sandbox.js/raw/master/jquery.highlight.js',
    'version' => 'n/a',
    'files' => array(
      'js' => array(
        'jquery.highlight.js',
      ),
    ),
  );
  return $libraries;
}