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
Hey everyone, Im trying to pass in config options as an object like below
defaultConfig: RichTextConfigOptions = { removed_menuitems: 'undo redo', menu: { file: { title: 'File', items: 'newdocument restoredraft | preview | export print | deleteallconversations' }, } } render() { return ( <div id="rich-text-editor-wrapper"> <script src='./tinymce.min.js' /> <tinymce-editor menubar="false" config={this.defaultConfig} ></tinymce-editor> </div> ); }
But it does not seem to register the attribute. The only reference on how to do this in the docs is this: https://www.tiny.cloud/docs/tinymce/6/webcomponent-ref/#setting-additional-configuration-options which involves passing in a string matching an object in the global config, which isn't a very realistic scenario. Any help would be greatly appreciated
The text was updated successfully, but these errors were encountered:
Ref: INT-3154
Sorry, something went wrong.
+1, but I'm grateful for the current global variable solution
No branches or pull requests
Hey everyone,
Im trying to pass in config options as an object like below
But it does not seem to register the attribute. The only reference on how to do this in the docs is this: https://www.tiny.cloud/docs/tinymce/6/webcomponent-ref/#setting-additional-configuration-options
which involves passing in a string matching an object in the global config, which isn't a very realistic scenario. Any help would be greatly appreciated
The text was updated successfully, but these errors were encountered: