You are here

jscrollpane.install in JScrollPane 6.2

Install, update, and uninstall functions for the jScrollPane module.

File

jscrollpane.install
View source
<?php

/**
 * @file
 * Install, update, and uninstall functions for the jScrollPane module.
 */

/**
 * Implementation of hook_install().
 */
function jscrollpane_install() {
  variable_set('jscrollpane_class', '.scroll-pane');
}

/**
 * Implementation of hook_uninstall().
 */
function jscrollpane_uninstall() {
  variable_del('jscrollpane_class');
}

Functions

Namesort descending Description
jscrollpane_install Implementation of hook_install().
jscrollpane_uninstall Implementation of hook_uninstall().