function respondjs_library in Respond.js 7
Implements hook_library().
File
- ./
respondjs.module, line 67 - Main file for the Respond.js module
Code
function respondjs_library() {
$libraries['respondjs'] = array(
'title' => 'Respond.js',
'website' => 'https://github.com/scottjehl/Respond',
'version' => '',
'js' => array(
respondjs_get_library_file() => array(),
),
);
return $libraries;
}