From e01e3f0e1a0f24c6ff58d4687b851e0049d5a6e8 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 20 Apr 2017 18:26:56 +0200 Subject: [PATCH] allow to set CSS classes on links --- lam/templates/lib/extra/ckeditor/config.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lam/templates/lib/extra/ckeditor/config.js b/lam/templates/lib/extra/ckeditor/config.js index 5bd27bba..4c40c6a6 100644 --- a/lam/templates/lib/extra/ckeditor/config.js +++ b/lam/templates/lib/extra/ckeditor/config.js @@ -4,7 +4,7 @@ */ CKEDITOR.editorConfig = function( config ) { - + // %REMOVE_START% // The configuration options below are needed when running CKEditor from source files. config.plugins = 'basicstyles,blockquote,dialogui,dialog,clipboard,panel,floatpanel,menu,contextmenu,button,toolbar,enterkey,entities,floatingspace,listblock,richcombo,format,horizontalrule,htmlwriter,wysiwygarea,image,indent,indentlist,fakeobjects,link,list,magicline,maximize,removeformat,sourcearea,specialchar,stylescombo,tab,table,tabletools,undo,font,justify,showborders,iframe,panelbutton,colorbutton'; @@ -36,8 +36,5 @@ CKEDITOR.editorConfig = function( config ) { // Se the most common block elements. config.format_tags = 'p;h1;h2;h3;pre'; - // Make dialogs simpler. - config.removeDialogTabs = 'image:advanced;link:advanced'; - config.height = 100; };