Update config.js

This commit is contained in:
Julian Prieber 2022-05-13 17:44:17 +02:00
parent 75272814a6
commit 7e74f2b7df
1 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,7 @@
* For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
*/
CKEDITOR.editorConfig = function( config ) {
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here.
// For complete reference see:
// https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html
@ -36,6 +36,5 @@ CKEDITOR.editorConfig = function( config ) {
// Simplify the dialog windows.
config.removeDialogTabs = 'image:advanced;link:advanced';
config.extraPlugins = 'justify';
config.extraPlugins = 'lineheight';
config.extraPlugins = 'justify, lineheight';
};