function jscrollpane_init in JScrollPane 7
Same name and namespace in other branches
- 6.2 jscrollpane.module \jscrollpane_init()
Implements hook_init().
File
- ./
jscrollpane.module, line 11 - JavaScript based scrollable containers
Code
function jscrollpane_init() {
$path = drupal_get_path('module', 'jscrollpane');
drupal_add_css($path . '/css/jquery.jscrollpane.css');
drupal_add_js($path . '/js/jquery.jscrollpane.min.js');
drupal_add_js($path . '/js/jquery.mousewheel.js');
drupal_add_js($path . '/js/script.js');
}