You are here

function jq_maphilight_library in jQuery Map Hilight 7

Implements hook_library().

File

./jq_maphilight.module, line 10
Configurable javascript based image map highlighting using the jquery maphilight plugin.

Code

function jq_maphilight_library() {
  $libraries['jquery.maphilight'] = array(
    'title' => 'jQuery Maphilight',
    'website' => 'http://plugins.jquery.com/project/maphilight',
    'version' => '1.2.2',
    'js' => array(
      libraries_get_path('jquery.maphilight', FALSE) . '/jquery.maphilight.min.js' => array(),
    ),
  );
  return $libraries;
}