You are here

function webform_hints_libraries_info in Webform Hints 7

Implements hook_libraries_info().

File

./webform_hints.module, line 30
This module applies the titles of webform components as placeholder hints.

Code

function webform_hints_libraries_info() {
  $libraries['form-defaults'] = array(
    'name' => 'jQuery Form Defaults',
    'vendor url' => 'https://github.com/palmerj3/jQuery-Plugin---Form-Field-Default-Value',
    'download url' => 'https://github.com/palmerj3/jQuery-Plugin---Form-Field-Default-Value',
    // No version provided by plugin author.
    'version' => '1.0',
    'files' => array(
      'js' => array(
        'jquery.form-defaults.min.js',
      ),
    ),
  );
  return $libraries;
}