Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/forms-angular/fng-ckeditor

ckEditor plugin for forms angular
https://github.com/forms-angular/fng-ckeditor

Last synced: about 2 months ago
JSON representation

ckEditor plugin for forms angular

Awesome Lists containing this project

README

        

# fng-ckeditor

Documentation for getting a WYSIWYG field in forms-angular

## CKEditor Version 5

### Usage

#### For default Classic build

Add the following lines to your index.html (or equivalent) file

In your Mongoose schemas you can set up fields like this:

fieldName: {type: String, form: {type: 'textarea', add: 'ckeditor5'}}

Register the directive:

angular.module('myApp',['fng.ckeditor'])

#### For fng custom build

Add the following lines to your index.html (or equivalent) file

In your Mongoose schemas you can set up fields like this:

fieldName: {type: String, form: {type: 'textarea', add: 'ckeditor5 custom'}}

Register the directive:

angular.module('myApp',['fng.ckeditor'])

## CKEditor Version 4

### Usage

npm install github:esvit/ng-ckeditor

Add the following lines to your index.html (or equivalent) file


In your Mongoose schemas you can set up fields like this:

fieldName: {type: String, form: {type: 'textarea', add: 'ckEditor'}}