Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/axilleasiv/angular-quill

Angular directive for Quill WYSIWYG editor
https://github.com/axilleasiv/angular-quill

Last synced: about 6 hours ago
JSON representation

Angular directive for Quill WYSIWYG editor

Awesome Lists containing this project

README

        

angular-quill
================

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

```js

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

```

Bare Minimum Html
```html


```

With Options
```html


```

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

Bower Installation
--------------
```js
bower install angular-quill
```