Skip to content

themeteorites/quilljs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Quill.js packaged for Meteor.

#Installation meteor add themeteorites:quilljs

#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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 83.0%
  • CSS 17.0%