You are here

function template_process_flexslider_list in Flex Slider 7.2

Prepares variables for flexslider list templates.

See also

flexslider-list.tpl.php.

File

theme/flexslider.theme.inc, line 125
Theming functions for the flexslider module.

Code

function template_process_flexslider_list(&$variables) {

  // Reset the list of attributes
  $variables['settings']['attributes'] = array(
    // @todo find a way to detect the outter container class if possible
    'class' => array(
      'slides',
    ),
  );
}