froala / ember-froala-editor

Ember component for Froala WYSIWYG HTML Rich Text Editor.
https://froala.com/wysiwyg-editor
MIT License
69 stars 35 forks source link

Image Plugin #122

Closed TomWsl closed 2 years ago

TomWsl commented 2 years ago

Does ember-froala-editor support Froala editor image plugin?

Panman82 commented 2 years ago

While I haven't used it personally, the Ember addon can certainly import the plugin for you. You'll probably need to change the upload URL options to ensure images go to the correct place.

// ember-cli-build.js
// ... (snip)
let app = new EmberApp(defaults, {
  'ember-froala-editor': {
    plugins: ['image']
  }
});
// ... (snip)
Panman82 commented 2 years ago

Hi @TomWsl, I'm going to close this for now but if you still need help comment here and I'll open it up again.