-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CKEditor is not loaded after -not cached- page preview from backend #122
Comments
Maybe linked to #110 (?) |
The whole code should be wrapped by |
I've attached a working patch in #119 |
Thanks @dogawaf |
Hi thanks for that fix! It's working for me. Thanks! |
I can also confirm this issue with TYPO3 10.4.18. #127 seems to fix this. |
[BUGFIX] #122: Fix jquery requirement to not crash the ckeditor
@CybotTM there is no fix for v10 for TYPO3 10.4 ? |
Hi @Patta , please see release 10.2.0 if it works for you. Cheers. |
@CybotTM thanks for the fast release! Works nice. Just the image icon is lightened and has the |
@Patta +1 Seems to work too, but the disabled styled icons is a bit confusing to deploy in production for contributors. |
@Patta or @lucmuller, can you please create a new issue, thank you. Thank you. |
New issue is created (#145), but I do not have a patch right now. |
This is a little bit tricky !
In rte_ckeditor_image/Resources/Public/JavaScript/Plugins/typo3image.js
There's a problem with :
require(['jquery'], function (jquery) {
As the $ variable is initialiased at the begining of the code, if Jquery is not loaded properly, then the rest of the code depending on $ fails.
A quick workaround for this is to simply comment out the line :
//var $;
Step to reproduce the anomaly :
See :
The text was updated successfully, but these errors were encountered: