wvanooijen92:meteorquill

Quill.js version v1.0.3 for Meteor


Install
meteor add wvanooijen92:meteorquill@=0.0.5

Documentation

Quill.js for Meteor.

Installation

meteor add wvanooijen92:meteorquill

Howto Use

The package provides the Quill class to your Meteor app.

A small example how to use it in your app

Template.editor.rendered = ->

  basicEditor = new Quill(".basic-wrapper .editor-container",
    modules:
      toolbar:
        container: ".basic-wrapper .toolbar-container"
    styles: false
    theme: "snow"
  )

For more examples, visit Quill's homepage.

Note

This package is a simple wrapper for the Quill library and does not offer concurrency.