0.3.0 • Published 8 years ago

angular-quill v0.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

angular-quill

(This fork adapts the library for proper use with browserify and is still being developed, use at own risk)

Angular Quill is an angular directive for the Quill editor. http://quilljs.com/

Usage

  1. Include the quill libraries
  2. In your angular application register angular-quill as a dependency.
  3. Add the necessary html to view the editor.

Registration

// Angular Registration
angular.module('app', ['angular-quill']);

Bare Minimum Html

<div ng-model="article" quill></div>

With Options

 <div ng-model="article" quill="{
      modules: {
        'toolbar': { container: '.toolbar' },
        'image-tooltip': false,
        'link-tooltip': false
      },
      theme: 'snow'
    }"></div>

You can pass options directly to Quill editor by specifying them as the value of the quill attribute.

Bower Installation

bower install angular-quill
0.3.0

8 years ago

0.2.0

9 years ago

0.1.6

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago