Code licensed under New BSD License.
Add the following to your package.json
"ng-ckeditor": "git://github.com/aviadhahami/ng-ckeditor.git"
run npm i
and somewhere in your code:
import 'ng-ckeditor';
import 'ng-ckeditor/ng-ckeditor.css';
and in your app dependencies add
angular.module('appLib', [
...
'ngCkeditor',
])
bower install ng-ckeditor
##Usage
<textarea ckeditor="editorOptions" ng-model="modelName"></textarea>
// add dependency
angular.module('app', ['ngCkeditor'])
// setup editor options
$scope.editorOptions = {
language: 'ru',
uiColor: '#000000'
};