Suggestion to improve default CKEditor
CKEditor is installed by default with:
1. the browser's native spell checker disabled. This confuses users.
2. the browser's native context menu disabled and replaced. Again, this confuses users.
3. a small edit window which can make it difficult to edit pages so we should provide the 'maximize' option on the toolbar.
The following code in gsconfig.php fixes these problems:
I'd like to recommend this as default for 3.4.
P.S. To make the above code work you will need to uncomment 'define('GSEDITORTOOL', 'advanced');' in gsconfig.php.
CKEditor is installed by default with:
1. the browser's native spell checker disabled. This confuses users.
2. the browser's native context menu disabled and replaced. Again, this confuses users.
3. a small edit window which can make it difficult to edit pages so we should provide the 'maximize' option on the toolbar.
The following code in gsconfig.php fixes these problems:
Code:
# WYSIWYG Editor Options
define('GSEDITOROPTIONS',
"
disableNativeSpellChecker : false,
removePlugins : 'liststyle,tabletools,scayt,menubutton,contextmenu',
toolbar_advanced : [['Bold', 'Italic', 'Underline', 'NumberedList', 'BulletedList', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock', 'Table', 'TextColor', 'BGColor', 'Link', 'Unlink', 'Image', 'RemoveFormat', 'Source', 'Maximize'],'/',['Styles','Format','Font','FontSize']]
");
I'd like to recommend this as default for 3.4.
P.S. To make the above code work you will need to uncomment 'define('GSEDITORTOOL', 'advanced');' in gsconfig.php.