Skip to content
This repository has been archived by the owner on Aug 4, 2020. It is now read-only.

Angular directive for Quill WYSIWYG editor

License

MIT, BSD-3-Clause licenses found

Licenses found

MIT
LICENSE.md
BSD-3-Clause
LICENSE.txt
Notifications You must be signed in to change notification settings

salesforceiq-oss/angular-quill

 
 

[![npm][npm-badge]][npm-badge-url] [npm-badge]: https://img.shields.io/npm/v/angular-quill.svg [npm-badge-url]: https://www.npmjs.com/package/angular-quill

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

About

Angular directive for Quill WYSIWYG editor

Resources

License

MIT, BSD-3-Clause licenses found

Licenses found

MIT
LICENSE.md
BSD-3-Clause
LICENSE.txt

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 44.8%
  • Shell 35.1%
  • JavaScript 20.1%