From 44dbb30ffe5947cb32211335c57a105b59553946 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Mon, 31 Jul 2017 12:16:05 -0400 Subject: [PATCH] (js) Disable autogrow plugin in CKEditor Fixes #4239 --- UI/WebServerResources/ckeditor/config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/UI/WebServerResources/ckeditor/config.js b/UI/WebServerResources/ckeditor/config.js index de8a90c25..b4d88ea91 100644 --- a/UI/WebServerResources/ckeditor/config.js +++ b/UI/WebServerResources/ckeditor/config.js @@ -26,9 +26,7 @@ CKEDITOR.editorConfig = function( config ) { // Configure autogrow // http://docs.ckeditor.com/#!/guide/dev_autogrow - config.autoGrow_onStartup = true; - config.autoGrow_minHeight = 300; - config.autoGrow_bottomSpace = 0; + config.removePlugins = 'autogrow'; // Disables the built-in words spell checker if browser provides one. Defaults to true. // http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-disableNativeSpellChecker