├── .bowerrc ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── examples ├── 1.html ├── checkspelling.php ├── css │ └── bootstrap.css ├── demo1.html ├── demo2.html ├── inlineall.html ├── spellcheck │ └── handler.php └── test.php ├── ng-ckeditor.css ├── ng-ckeditor.js ├── ng-ckeditor.min.js ├── ng-ckeditor.min.js.map ├── package.json ├── styles └── ng-ckeditor.less └── test ├── .jshintrc ├── karma.conf.js └── spec ├── directiveOnFormSpec.js └── directiveSpec.js /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/.bowerrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/bower.json -------------------------------------------------------------------------------- /examples/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/1.html -------------------------------------------------------------------------------- /examples/checkspelling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/checkspelling.php -------------------------------------------------------------------------------- /examples/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/css/bootstrap.css -------------------------------------------------------------------------------- /examples/demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/demo1.html -------------------------------------------------------------------------------- /examples/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/demo2.html -------------------------------------------------------------------------------- /examples/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/inlineall.html -------------------------------------------------------------------------------- /examples/spellcheck/handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/spellcheck/handler.php -------------------------------------------------------------------------------- /examples/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/examples/test.php -------------------------------------------------------------------------------- /ng-ckeditor.css: -------------------------------------------------------------------------------- 1 | .ng-ckeditor{border:0} -------------------------------------------------------------------------------- /ng-ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/ng-ckeditor.js -------------------------------------------------------------------------------- /ng-ckeditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/ng-ckeditor.min.js -------------------------------------------------------------------------------- /ng-ckeditor.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/ng-ckeditor.min.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/package.json -------------------------------------------------------------------------------- /styles/ng-ckeditor.less: -------------------------------------------------------------------------------- 1 | .ng-ckeditor { 2 | border: 0 none; 3 | } -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/spec/directiveOnFormSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/test/spec/directiveOnFormSpec.js -------------------------------------------------------------------------------- /test/spec/directiveSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esvit/ng-ckeditor/HEAD/test/spec/directiveSpec.js --------------------------------------------------------------------------------