Skip to content

guestyorg/ng-ckeditor

 
 

Repository files navigation

This is a fork ment for the sole purpose of installing this package via NPM

CKEditor + AngularJS

Build Status Coverage Status

Code licensed under New BSD License.

Installing with npm

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',
])

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.6%
  • CSS 0.4%