We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In your README you have mentioned this is how we should use the key
FROALA_EDITOR_OPTIONS = { 'key': '', # other options # ... }
but this doesn't work because Froala is expecting 'apiKey' instead (https://froala.com/wysiwyg-editor/docs/options/#apiKey). Either change the documentation or change the code on widgets.py etc to convert.
The text was updated successfully, but these errors were encountered:
Docs Froala say this for JavaScript and jQuery this way new FroalaEditor('your_selector', {key: "ACTIVATION_KEY"}) as you can see, use key!!
new FroalaEditor('your_selector', {key: "ACTIVATION_KEY"})
that doesn't work for you ?
Sorry, something went wrong.
No branches or pull requests
In your README you have mentioned this is how we should use the key
FROALA_EDITOR_OPTIONS = { 'key': '', # other options # ... }
but this doesn't work because Froala is expecting 'apiKey' instead (https://froala.com/wysiwyg-editor/docs/options/#apiKey). Either change the documentation or change the code on widgets.py etc to convert.
The text was updated successfully, but these errors were encountered: