Changes between Initial Version and Version 2 of Ticket #45645
- Timestamp:
- 12/14/2018 05:42:49 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45645 – Description
initial v2 1 The method of loading TinyMCE was added many years ago. All TinyMCE scripts are concatenated and p er-compressed, then we point the script tagto `wp-tinymce.php` where we determine if the browser supports compression, add the appropriate headers and output the actual `wp-tinymce.js.gz`.1 The method of loading TinyMCE was added many years ago. All TinyMCE scripts are concatenated and pre-compressed, then we point the script tag src to `wp-tinymce.php` where we determine if the browser supports compression, add the appropriate headers and output the actual `wp-tinymce.js.gz`. 2 2 3 3 This, indeed, is the fastest way to load a lot of JS without relying on the server to compress it. However lately been seeing more and more reports of that file being blocked by some security measures. Also, nearly all servers compress .js and .css files now.