You are here

jscrollpane.module in JScrollPane 7

Same filename and directory in other branches
  1. 5 jscrollpane.module
  2. 6.2 jscrollpane.module

JavaScript based scrollable containers

File

jscrollpane.module
View source
<?php

/**
 * @file
 * JavaScript based scrollable containers
 */

/**
 * Implements hook_init().
 */
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');
}

Functions

Namesort descending Description
jscrollpane_init Implements hook_init().