You are here

function auto_height_library in jQuery Auto Height 7.2

Same name and namespace in other branches
  1. 7 auto_height.module \auto_height_library()

Implements hook_library().

File

./auto_height.module, line 119
Provides dynamic adjustment of column heights, matching the biggest column in each Row.

Code

function auto_height_library() {
  $libraries['autoheight'] = array(
    'title' => 'jQuery AutoHeight',
    'website' => 'https://github.com/monocult/jquery-autoheight',
    'version' => '1.0.0',
    'js' => array(
      'jquery.autoheight.js' => array(),
    ),
  );
  return $libraries;
}