Actions
Feature #86394
closedAdd cache buster to CKEditor's contentsCss files
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
RTE (rtehtmlarea + ckeditor)
Target version:
-
Start date:
2018-09-26
Due date:
% Done:
0%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
In order to make browsers aware of changed resources, all resources defined in editor.config.contentsCss
should contain a cache buster.
Configuration/RTE/Editor/Base.yaml
editor: config: # the CSS file to be used inside the editor contentsCss: "EXT:rte_ckeditor/Resources/Public/Css/contents.css"
The link rendered inside ifram.cke_wysiwyg_frame
<link type="text/css" rel="stylesheet" href="/typo3/sysext/rte_ckeditor/Resources/Public/Css/contents.css">
... should look like:
<link type="text/css" rel="stylesheet" href="/typo3/sysext/rte_ckeditor/Resources/Public/Css/contents.css?123456789">
Actions