From c2dedcc4e117149aecd8e61bcbc2ca47891e50f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Jarz=C4=99bski?= Date: Tue, 5 Jan 2021 17:40:02 +0100 Subject: [PATCH 1/2] Exclude WSC plugin from config. --- presets/demo-ckeditor-config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/presets/demo-ckeditor-config.js b/presets/demo-ckeditor-config.js index 35c0db9f..a0f332a4 100644 --- a/presets/demo-ckeditor-config.js +++ b/presets/demo-ckeditor-config.js @@ -26,6 +26,10 @@ CKEDITOR.editorConfig = function( config ) { { name: 'about' } ]; + // WebSpellChecker Dialog plugin is approaching the end of life + // and is disabled by default. + config.removePlugins = 'wsc'; + // Remove some buttons provided by the standard plugins, which are // not needed in the Standard(s) toolbar. config.removeButtons = 'Underline,Subscript,Superscript'; From e4c976526ab6baf76e94e98bc3c53180a75ce6fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Krzto=C5=84?= Date: Tue, 12 Jan 2021 14:52:15 +0100 Subject: [PATCH 2/2] Remove WSC plugin from demo build config instead of using removePlugins. --- presets/demo-build-config.js | 3 +-- presets/demo-ckeditor-config.js | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/presets/demo-build-config.js b/presets/demo-build-config.js index b490c8d3..5a1bdb3c 100644 --- a/presets/demo-build-config.js +++ b/presets/demo-build-config.js @@ -104,7 +104,6 @@ var CKBUILDER_CONFIG = { 'undo' : 1, 'uploadfile' : 1, 'uploadimage' : 1, - 'wsc' : 1, 'wysiwygarea' : 1 }, languages : { @@ -176,4 +175,4 @@ var CKBUILDER_CONFIG = { 'zh' : 1, 'zh-cn' : 1 } -}; \ No newline at end of file +}; diff --git a/presets/demo-ckeditor-config.js b/presets/demo-ckeditor-config.js index a0f332a4..35c0db9f 100644 --- a/presets/demo-ckeditor-config.js +++ b/presets/demo-ckeditor-config.js @@ -26,10 +26,6 @@ CKEDITOR.editorConfig = function( config ) { { name: 'about' } ]; - // WebSpellChecker Dialog plugin is approaching the end of life - // and is disabled by default. - config.removePlugins = 'wsc'; - // Remove some buttons provided by the standard plugins, which are // not needed in the Standard(s) toolbar. config.removeButtons = 'Underline,Subscript,Superscript';