Merge pull request #6289 from AbubakerB/patch-1

Added config singleton and missing properties
This commit is contained in:
Masahiro Wakame
2015-10-16 21:56:31 +09:00
+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;
}