You are here

function scroll_to_top_init in scroll to top 7

Same name and namespace in other branches
  1. 6.2 scroll_to_top.module \scroll_to_top_init()
  2. 6 scroll_to_top.module \scroll_to_top_init()
  3. 7.2 scroll_to_top.module \scroll_to_top_init()

Implementation of hook_init().

File

./scroll_to_top.module, line 11
Provide scroll to top link.

Code

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');
}