You are here

function animate_css_page_attachments in Animate CSS 8

Implements hook_page_attachments().

File

./animate_css.module, line 25
Drupal integration with Animate.css.

Code

function animate_css_page_attachments(array &$attachments) {

  // Attach animate.css to all pages.
  $attachments['#attached']['library'][] = 'animate_css/animate';
}