cryptpad/customize.dist/ckeditor-config.js

20 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-02-22 10:17:12 +00:00
CKEDITOR.editorConfig = function( config ) { // jshint ignore:line
2017-02-21 17:21:30 +00:00
var fixThings = false;
// https://dev.ckeditor.com/ticket/10907
2017-02-21 17:59:42 +00:00
config.needsBrFiller= fixThings;
config.needsNbspFiller= fixThings;
2017-02-21 17:21:30 +00:00
2017-02-21 17:59:42 +00:00
config.removeButtons= 'Source,Maximize';
2017-02-21 17:21:30 +00:00
// magicline plugin inserts html crap into the document which is not part of the
// document itself and causes problems when it's sent across the wire and reflected back
2017-02-21 17:59:42 +00:00
config.removePlugins= 'resize';
config.extraPlugins= 'autolink,colorbutton,colordialog,font';
config.toolbarGroups= [{"name":"clipboard","groups":["clipboard","undo"]},{"name":"editing","groups":["find","selection"]},{"name":"links"},{"name":"insert"},{"name":"forms"},{"name":"tools"},{"name":"document","groups":["mode","document","doctools"]},{"name":"others"},{"name":"basicstyles","groups":["basicstyles","cleanup"]},{"name":"paragraph","groups":["list","indent","blocks","align","bidi"]},{"name":"styles"},{"name":"colors"}];
2017-02-21 17:21:30 +00:00
//skin: 'moono-cryptpad,/pad/themes/moono-cryptpad/'
//skin: 'flat,/pad/themes/flat/'
//skin: 'moono-lisa,/pad/themes/moono-lisa/'
//skin: 'moono-dark,/pad/themes/moono-dark/'
//skin: 'office2013,/pad/themes/office2013/'
2017-02-21 17:59:42 +00:00
};