Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/forms-angular/fng-ckeditor
- Owner: forms-angular
- Created: 2014-06-10T17:33:28.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T11:07:55.000Z (8 months ago)
- Last Synced: 2024-05-23T09:51:32.409Z (7 months ago)
- Language: CSS
- Size: 2.94 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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'}}