You are here

function aos_page_build in Animate On Scroll 7

Implements hook_preprocess_page().

File

./aos.module, line 23
Integration with AOS library.

Code

function aos_page_build(&$page) {

  // Load libraries module.
  drupal_load('module', 'libraries');

  // Load the AOS library.
  libraries_load('aos');

  // Add our js to initialize AOS.
  drupal_add_js(drupal_get_path('module', 'aos') . '/js/script.js', array(
    'scope' => 'footer',
  ));
}