function scrollreveal_libraries_info in Scroll Reveal 7.2
Same name and namespace in other branches
- 7 scrollreveal.module \scrollreveal_libraries_info()
Implements hook_libraries_info().
File
- ./
scrollreveal.module, line 417 - Basic Module file.
Code
function scrollreveal_libraries_info() {
$libraries['scrollreveal'] = array(
'name' => 'ScrollReveal',
'vendor url' => 'https://github.com/julianlloyd/scrollReveal.js',
'download url' => 'https://github.com/julianlloyd/scrollReveal.js',
'version' => "2.1.0",
'files' => array(
'js' => array(
'scrollReveal.js',
),
),
);
return $libraries;
}