diff --git a/showcase/demo/editor/editordemo.html b/showcase/demo/editor/editordemo.html index 00aa5e87b8b..54bf4abfcee 100644 --- a/showcase/demo/editor/editordemo.html +++ b/showcase/demo/editor/editordemo.html @@ -194,6 +194,19 @@

Styling

Dependencies

Quill Editor 1.0.

+

Resources of quill needs to be added to your application. Example setup with CLI is as follows;

+ +npm install quill --save + +

Add Quill to scripts in angular-cli.json

+ +"scripts": [... "../node_modules/quill/dist/quill.js"], + +

Add Quill css to styles in angular-cli.json

+ +"styles": [ ... "../node_modules/quill/dist/quill.core.css", "../node_modules/quill/dist/quill.snow.css"], + +