You are here

function hook_css3pie_alter in css3pie 7.2

Alter the css3pie module selector array before building

Parameters

array $data the selector array:

string $mode the current bulding mode (css or js):

File

./css3pie.api.php, line 31
Hooks provided by the css3pie module

Code

function hook_css3pie_alter(array &$data, $mode = 'css') {
  if (isset($data['css3pie'])) {
    $data['css3pie'][] = '.newSelector';
  }
}