widmogrod / zf2-assetic-module

Zend Framework module for Assetic
146 stars 62 forks source link

added view helper to include asset collections manually in the view scri... #93

Closed donataso closed 11 years ago

donataso commented 11 years ago

Added view helper to have an ability to include asset collections in the view script manually.

It's usefull if I want to use conditional comments for IE stuff:

<!--[if IE 7]>
<?php echo $this->asset('login_ie7_head_js') ?>
<?php echo $this->asset('login_ie7_css', array('media' => 'screen')) ?>
<![endif]-->
widmogrod commented 11 years ago

Hi, this is looking nice. Please add information in changelog.md and then I'll merge it.

gregorybesson commented 11 years ago

Thank you Donatas,

Really helpful !