function auto_height_library in jQuery Auto Height 7
Same name and namespace in other branches
- 7.2 auto_height.module \auto_height_library()
Implements hook_library().
File
- ./
auto_height.module, line 120 - 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;
}