From 7db7d750e132d4dc81b19ba1f608a01137aa482e Mon Sep 17 00:00:00 2001 From: mirogrenda Date: Wed, 15 Oct 2014 11:21:54 +0200 Subject: [PATCH 1/2] Added config option disableObjectResizing --- ckeditor/ckeditor.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ckeditor/ckeditor.d.ts b/ckeditor/ckeditor.d.ts index 8d5b2f815..f87ff2f17 100644 --- a/ckeditor/ckeditor.d.ts +++ b/ckeditor/ckeditor.d.ts @@ -9,6 +9,7 @@ declare module CKEDITOR { // Config options var disableAutoInline: boolean; + var disableObjectResizing: boolean; var replaceClass: string; var skinName: string; From e58b8d6c2373df207290c9d7054ff1e2be1e98b9 Mon Sep 17 00:00:00 2001 From: mirogrenda Date: Wed, 15 Oct 2014 11:45:32 +0200 Subject: [PATCH 2/2] Changes to config interface --- ckeditor/ckeditor.d.ts | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/ckeditor/ckeditor.d.ts b/ckeditor/ckeditor.d.ts index f87ff2f17..f079d6960 100644 --- a/ckeditor/ckeditor.d.ts +++ b/ckeditor/ckeditor.d.ts @@ -552,9 +552,20 @@ declare module CKEDITOR { interface config { - startupMode: string; - removeButtons: string; + startupMode?: string; + removeButtons?: string; toolbar?: any; + skin?: string; + language?: string; + plugins?: string; + font_names?: string; + font_defaultLabel?: string; + fontSize_sizes?: string; + fontSize_defaultLabel?: string; + colorButton_enableMore?: boolean; + colorButton_colors?: string; + startupFocus?: boolean; + on?: any; }