Added config singleton and missing properties

Added 

- CKEDITOR.config : singleton ([doc link](http://docs.ckeditor.com/#!/api/CKEDITOR.config))
- config.contentsCss - string or string array ([doc link](http://docs.ckeditor.com/#!/api/CKEDITOR.config))
- customConfig - string ([doc link](http://docs.ckeditor.com/#!/api/CKEDITOR.config))
This commit is contained in:
Abubaker Bashir
2015-10-14 12:33:11 +01:00
parent b27d0d0e1c
commit 96d7162807
+3
View File
@@ -64,6 +64,7 @@ declare module CKEDITOR {
var status: string;
var timestamp: string;
var version: string;
var config: config;
// Methods
@@ -556,6 +557,7 @@ declare module CKEDITOR {
}
interface config {
contentsCss?: string | string[];
startupMode?: string;
removeButtons?: string;
removePlugins?: string;
@@ -576,6 +578,7 @@ declare module CKEDITOR {
height?: string | number;
toolbarLocation?: string;
readOnly?: boolean;
customConfig?: string;
}