From 20deb02d1c771ccbfc1455689c679d22287118a0 Mon Sep 17 00:00:00 2001 From: Karl Cordes Date: Fri, 25 Nov 2022 12:10:58 +1100 Subject: [PATCH] Issue #53 - Enable browser-native spellcheck feature in CKEditor --- app/webroot/js/global.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/webroot/js/global.js b/app/webroot/js/global.js index 0d4dad00..1cddb27e 100755 --- a/app/webroot/js/global.js +++ b/app/webroot/js/global.js @@ -63,5 +63,7 @@ var config = { ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'], ['Link','Unlink'], ['Maximize','-','About'] - ] -}; \ No newline at end of file + ], + disableNativeSpellChecker: false, + removePlugins: 'contextmenu,liststyle,tabletools' +};