This package has been deprecated

Author message:

deprecated in favor of main ember-quill

@courbanize/ember-quill

0.0.8 • Public • Published

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

Package Sidebar

Install

npm i @courbanize/ember-quill

Weekly Downloads

0

Version

0.0.8

License

Apache-2.0

Last publish

Collaborators

  • erincou
  • fnichols
  • tarin.a.comer
  • suzidao