You are here

private function CSSmin::preserve_old_IE_specific_matrix_definition in Advanced CSS/JS Aggregation 8.2

Same name and namespace in other branches
  1. 8.3 advagg_css_minify/yui/CSSMin.inc \CSSmin::preserve_old_IE_specific_matrix_definition()

File

advagg_css_minify/yui/CSSMin.inc, line 607

Class

CSSmin

Code

private function preserve_old_IE_specific_matrix_definition($matches) {
  $this->preserved_tokens[] = $matches[1];
  return 'filter:progid:DXImageTransform.Microsoft.Matrix(' . self::TOKEN . (count($this->preserved_tokens) - 1) . '___' . ')';
}