public function InitSubscriber::asyncJs in Advanced CSS/JS Aggregation 8.4
Same name and namespace in other branches
- 8.3 advagg_mod/src/EventSubscriber/InitSubscriber.php \Drupal\advagg_mod\EventSubscriber\InitSubscriber::asyncJs()
Apply CSS defer actions.
Parameters
\Symfony\Component\HttpKernel\Event\FilterResponseEvent $response: The response event object.
File
- advagg_mod/
src/ EventSubscriber/ InitSubscriber.php, line 243
Class
- InitSubscriber
- Perform initialization tasks for advagg_mod.
Namespace
Drupal\advagg_mod\EventSubscriberCode
public function asyncJs(FilterResponseEvent $response) {
// Skip if not enabled.
if (!$this->config
->get('js_async') || $this->config
->get('js_defer')) {
return;
}
$response = $response
->getResponse();
// Only process Html Responses.
if (!$response instanceof HtmlResponse) {
return;
}
$content = $this->jsAsyncer
->async($response
->getContent());
$response
->setContent($content);
}