mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 23:36:00 +00:00
20 lines
2.3 KiB
JavaScript
Executable File
20 lines
2.3 KiB
JavaScript
Executable File
/**
|
|
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
|
* For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
*/
|
|
|
|
CKEDITOR.editorConfig = function( config ) {
|
|
|
|
// %REMOVE_START%
|
|
// The configuration options below are needed when running CKEditor from source files.
|
|
//config.plugins = 'dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,templates,menu,contextmenu,div,resize,toolbar,elementspath,enterkey,entities,popup,filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,font,forms,format,horizontalrule,htmlwriter,iframe,wysiwygarea,image,indent,indentblock,indentlist,smiley,justify,link,list,liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastefromword,preview,print,removeformat,save,selectall,showblocks,showborders,sourcearea,specialchar,menubutton,scayt,stylescombo,tab,table,tabletools,undo,wsc,youtube,uicolor,tableresize,syntaxhighlight,stylesheetparser,strinsert,backup,stat,sourcedialog,slideshow,sharedspace,resizewithwindow,placeholder,onchange,mrmonkey,mediaembed,oembed,maxheight,mathedit,lite,symbol,insertpre,imagebrowser,iframedialog,htmlbuttons,gg,floating-tools,fastimage,eqneditor,docprops,divarea,devtools,confighelper,codemirror,pbckcode,bbcode,backgrounds,autosave,autogrow,allmedias,xml,ajax,texttransform,toolbarswitch,uploadcare,wordcount,xdsoft_translater,zoom';
|
|
config.plugins = 'dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,templates,menu,contextmenu,div,resize,toolbar,elementspath,list,indent,enterkey,entities,popup,filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,font,forms,format,htmlwriter,horizontalrule,iframe,wysiwygarea,image,smiley,justify,link,liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastefromword,preview,print,removeformat,save,selectall,showblocks,showborders,specialchar,menubutton,scayt,stylescombo,tab,table,tabletools,undo,wsc,autogrow,xml,ajax,youtube,stat,sourcedialog,sourcearea,codemirror';
|
|
config.skin = 'moono';
|
|
// %REMOVE_END%
|
|
|
|
// Define changes to default configuration here. For example:
|
|
// config.language = 'fr';
|
|
// config.uiColor = '#AADC6E';
|
|
};
|
|
|