1.1.0 • Published 4 years ago

ember-quill2 v1.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
4 years ago

Ember-Quill

build status

This project is fork of ember-quill by Jeffrey Gelens. This project just upgrades ember to latest version and makes it Ember 4 compatible.

Installation

  • ember install ember-quill

Component example

import Ember from 'ember';

export default Ember.Component.extend({
  options: {
    theme: "snow",
    modules: {
      toolbar: [
        [{header: [2, 3, 4, false]}],
        ["bold", "italic", "underline", "strike"],
        [{"color": []}],
        [{"list": "ordered"}, {"list": "bullet"}],
        [{"indent": "-1"}, {"indent": "+1"}],
        [{"align": []}],
        ["link"],
        ["clean"]
      ]
    }
  },

  actions: {
    updateText(editor) {
      this.attrs.update(editor.root.innerHTML);
    }
  }
});

Template example

{{quill-editor value=value options=options textChange=(action "updateText")}}

License

The ember-quill is under the Apache 2.0 license