protected function getAssetsToOutput()
 {
     $ouput = parent::getAssetsToOutput();
     $return = array();
     foreach ($ouput as $position => $assets) {
         foreach ($assets as $asset) {
             $asset->setAssetPosition(Asset::ASSET_POSITION_HEADER);
             $asset->setAssetSupportsMinification(false);
             $asset->setAssetSupportsCombination(false);
             $return[$position][] = $asset;
         }
     }
     return $return;
 }
Example #2
0
 protected function getAssetsToOutput()
 {
     return parent::getAssetsToOutput();
 }