CKEditor + AngularJS
This is a copy of https://github.com/esvit/ng-ckeditor/ for easy install with npm as bower is deprecated
Code licensed under New BSD License.
Installing via Bower
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'
};