You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Async and defer attributes now can only be added when also adding standalone="true". This doesn't work: using standalone="true" will generate inline js. Adding defer="defer" or async="async" to inline js is useless, as there is nothing to fetch. These params influence when external js is fetched, so only works when the 'src' param is present in the script tag.
Changing AssetService as follows fixes this:
if ($extractedAssetSettings['standalone']) {
$assetSettings = $extractedAssetSettings;
}
to
$assetSettings = $extractedAssetSettings;
and
if ($standaloneAssetSettings) {
// using async and defer simultaneously does not make sense technically, but do not enforce
if ($standaloneAssetSettings['async']) {
$tagBuilder->addAttribute('async', 'async');
}
if ($standaloneAssetSettings['defer']) {
$tagBuilder->addAttribute('defer', 'defer');
}
}
to
// using async and defer simultaneously does not make sense technically, but do not enforce
if ($standaloneAssetSettings['async']) {
$tagBuilder->addAttribute('async', 'async');
}
if ($standaloneAssetSettings['defer']) {
$tagBuilder->addAttribute('defer', 'defer');
}
The text was updated successfully, but these errors were encountered:
standalone="1" plus external="1" should work for you. Standalone asset settings must only be applied if an asset is standalone, otherwise it would also potentially apply to a merged chunk of assets leading to unpredictable results.
Unfortunately I cannot use that combination in this case: I need to generate the contents of the <v:asset.script> tag in a Fluid file, based on parameters for the current page.
So I have xclassed the AssetService for this particular project, to get the desired result.
Async and defer attributes now can only be added when also adding standalone="true". This doesn't work: using standalone="true" will generate inline js. Adding defer="defer" or async="async" to inline js is useless, as there is nothing to fetch. These params influence when external js is fetched, so only works when the 'src' param is present in the script tag.
Changing AssetService as follows fixes this:
to
$assetSettings = $extractedAssetSettings;
and
to
The text was updated successfully, but these errors were encountered: