source: main/trunk/greenstone3/web/interfaces/default/js/ckeditor/config.js@ 32438

Last change on this file since 32438 was 32438, checked in by kjdon, 6 years ago

CKEditor: added Image and SourceDialog plugins to allow image tag editing, and source code editing. config.js modified to include the plugins

File size: 1.2 KB
Line 
1/**
2 * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6CKEDITOR.editorConfig = function( config ) {
7 //Preventing convert entities
8 config.entities = false;
9 // Define changes to default configuration here. For example:
10 // config.language = 'fr';
11 // config.uiColor = '#AADC6E';
12
13 // Stop CKEditor from removing the attributes from HTML elements in doc.xml
14 // e.g. <P ALIGN="JUSTIFY"></P> in the original doc.xml gets turned into
15 // <p></p> when viewing the doc in editing mode and then, this ends up
16 // getting saved with user changes upon SaveAndRebuild.
17 // http://nightly.ckeditor.com/17-10-29-07-04/full/samples/old/datafiltering.html
18 // https://sdk.ckeditor.com/samples/acf.html
19 // https://stackoverflow.com/questions/15659390/ckeditor-automatically-strips-classes-from-div
20 // The following stops CKEDITOR from meddling with existing HTML:
21 config.allowedContent = true;
22 // add in the image plugin - allows editing image links etc, and
23 // sourcedialog plugin - give a sourcecode view for editing.
24 config.extraPlugins = 'image,sourcedialog';
25};
Note: See TracBrowser for help on using the repository browser.