Socket
Socket
Sign inDemoInstall

angular-quill

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-quill

a template for basic js packages


Version published
Weekly downloads
0
decreased by-100%
Maintainers
3
Weekly downloads
 
Created
Source

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

FAQs

Package last updated on 05 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc