You are here

function ajax_scroller_preprocess_page in Ajax 6

Implementation of hook_preprocess_hook().

Parameters

variables Assoc:

Return value

Bool

File

plugins/scroller/ajax_scroller.module, line 20

Code

function ajax_scroller_preprocess_page(&$variables) {
  drupal_add_js(drupal_get_path('module', 'ajax_scroller') . '/ajax_scroller.js', 'theme');
  return TRUE;
}