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

Last change on this file since 30309 was 30309, checked in by Georgiy Litvinov, 8 years ago

Fix ckeditor config to prevent creating &quot symbols from double quotes and replace for % symbol which led to failed rebuild.

File size: 389 bytes
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};
Note: See TracBrowser for help on using the repository browser.