Angular Module for rendering the CKEditor
npm install ng-ckeditorng.ckeditor
===========
CKEditor is a ready-for-use HTML text editor designed to simplify web content creation. It's a WYSIWYG editor that brings common word processor features directly to your web pages. Enhance your website experience with our community maintained editor.
`Parameters
| Name | Type | Dinamic | Mandatory | Description |
| ------------ | ------- | ------- | --------- | ------------------------------------------------------------ |
| ng-model | String | true | true | Scope of the attribute that will be the model |
| ng-change | Function | false | false | Callback function |
| ng-disabled | Boolean | true | false | Set ckeditor to readOnly |
| ng-config | Object | false | false | Receives a json object that is set to configuration object editor. This object must be created in AngularJS the controller and reported to the component. |
Bower install de dependency
`
$ bower install ng.ckeditor --save
`Module AngularJS include
`
angular.module('example', ["ng.ckeditor"]);
``