You are here

function live_css_element_info_alter in Live CSS 7.2

Same name and namespace in other branches
  1. 8.2 live_css.module \live_css_element_info_alter()
  2. 8 live_css.module \live_css_element_info_alter()

Implements hook_element_info_alter().

File

./live_css.module, line 92
Allows editing and a live view of all changes in real-time in the browser.

Code

function live_css_element_info_alter(&$type) {
  array_unshift($type['styles']['#pre_render'], 'live_css_pre_render');
}