jhartma / meteor-quill

Quill.js wrapped for Meteor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quill.js version 0.19.8 for Meteor.

#Installation meteor add jhartma:quill

#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.

About

Quill.js wrapped for Meteor


Languages

Language:JavaScript 79.1%Language:CSS 20.9%