private function CSSmin::preserve_old_IE_specific_matrix_definition in Advanced CSS/JS Aggregation 8.3
Same name and namespace in other branches
- 8.2 advagg_css_minify/yui/CSSMin.inc \CSSmin::preserve_old_IE_specific_matrix_definition()
File
- advagg_css_minify/
yui/ CSSMin.inc, line 607
Class
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) . '___' . ')';
}