You are here

function micon_element_info_alter in Micon 2.x

Same name and namespace in other branches
  1. 8 micon.module \micon_element_info_alter()

Implements hook_element_info_alter().

File

./micon.module, line 87
Contains micon.module.

Code

function micon_element_info_alter(array &$types) {
  if (isset($types['html'])) {
    $types['html']['#attached']['library'][] = 'micon/micon';
  }
}