Skip to content

esvit/ng-ckeditor

Repository files navigation

CKEditor + AngularJS

Build Status Coverage Status

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'
};