Open cmsfoyer opened 10 years ago
Is there any way to configure js/css files for IE conditional tags ?
eg something like :
'assetic_configuration' => array( .... 'modules' => array( 'html_js' => array( 'assets' => array( 'js/html5.js', ), 'filters' => array( 'JSMinFilter' => array( 'name' => 'Assetic\Filter\JSMinFilter' ), ), 'options' => array( 'conditional' => 'lt IE 9', ), ),
That would give :
<!--[if lt IE 9]><script type="text/javascript" src="/js/vendor/html5.js"><![endif]-->
That would be useful.
Is there any way to configure js/css files for IE conditional tags ?
eg something like :
That would give :