You are here

scroll_to_top.module in scroll to top 7

Provide scroll to top link.

File

scroll_to_top.module
View source
<?php

/**
 * @file
 * Provide scroll to top link.
 */

/**
 * Implementation of hook_init().
 */
function scroll_to_top_init() {
  drupal_add_css(drupal_get_path('module', 'scroll_to_top') . '/scroll_to_top.css', 'module');
  drupal_add_js(drupal_get_path('module', 'scroll_to_top') . '/scroll_to_top.js');
}

Functions

Namesort descending Description
scroll_to_top_init Implementation of hook_init().