ckcustom.js
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. /*
  2. Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.html or http://ckeditor.com/license
  4. */
  5. CKEDITOR.editorConfig = function( config )
  6. {
  7.   config.PreserveSessionOnFileBrowser = true;
  8.   // Define changes to default configuration here. For example:
  9.   //config.language = '';
  10.   config.uiColor = '#E0ECFF';
  11. config.toolbar = 'Basic';
  12. config.entities_greek = false;
  13. config.entities_latin = false;
  14. config.entities_processNumerical = false;
  15. config.toolbar_Basic =
  16. [
  17.         ['Format', '-', 'Bold', 'Italic'], 
  18.         ['NumberedList','BulletedList'], 
  19.         ['Outdent', 'Indent'], 
  20.         ['Image', 'Flash', '-', 'Link'], 
  21.         ['Maximize'], 
  22.         ['Table'],
  23.         ['PageBreak'],
  24.         ['Source']
  25. ];
  26. }