Bug #56233
closedEpic #55575: Streamline JavaScript Code in the TYPO3 Backend
Load order of js files differs
0%
Description
There is a difference of ordering for js files, in case they are compressed / concatenated or not.
Looks like pagerenderer inverses the "forceOnTop files" while the ResourceCompressor doesn't.
if ($properties['forceOnTop']) { if ($properties['section'] === self::PART_HEADER) { $jsFiles = $tag . LF . $jsFiles; } else { $jsFooterFiles = $tag . LF . $jsFooterFiles; } } else { if ($properties['section'] === self::PART_HEADER) { $jsFiles .= LF . $tag; } else { $jsFooterFiles .= LF . $tag; } }
Instead of prepanding the file we should use the same logic as in ResourceCompressor. We should build arrays for each kind of section and merge them at the end.
The change of order should be communicated on launch. That's a breaking change for JS developers. They have to check the order of there JS files.
Updated by Daniel Siepmann almost 11 years ago
Getting deeper, it looks like pagerenderer is right and Compressor should take care of forceOnTop. Currently this setting is just ignored.
Updated by Markus Klein almost 11 years ago
Wait a bit, there's already a patch of mine pending I guess.
Updated by Markus Klein almost 11 years ago
- Target version deleted (
6.2.0)