0.0.6 • Published 7 years ago

@cspanring/ember-quill v0.0.6

Weekly downloads
1
License
Apache-2.0
Repository
-
Last release
7 years ago

Ember-Quill

This README outlines the details of collaborating on this Ember addon.

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