eastamis:ng-ckeditor

CKEditor + AngularJS


License
BSD-3-Clause
Install
meteor add eastamis:ng-ckeditor@=0.1.0

Documentation

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