Lazy Loaded Tiny MCE with typescript support
npm install @gavant/ember-tinymceTypescript lazy loaded wrapper for the tinymce wysiwyg editor.
- Ember.js v3.24 or above
- Ember CLI v3.24 or above
- Node.js v12 or above
```
ember install @gavant/ember-tinymce
The tinymce library and its assets are not bundled with the main app/vendor files, and will not be loaded until the component is rendered for the first time.
We accept any args that the tinymce editor does.
`
export default class Application extends Controller {
plugins: string[] = [TinymceEditorPlugins.EMOTICONS];
toolbar: string[] = ['emoticons'];
@tracked value = 'Much wow';
...
}
<:loading>
Hey, Im shown while tinymce is initializing. This might be helpful when rendering in fastboot
``
See the Contributing guide for details.
This project is licensed under the MIT License.