Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.js 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. Copyright (c) 2003-2013, 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.language = 'zh-cn';
  8. config.font_names = '宋体/宋体;黑体/黑体;仿宋/仿宋_GB2312;楷体/楷体_GB2312;隶书/隶书;幼圆/幼圆;Arial/Arial;Comic Sans MS/Comic Sans MS;';
  9. config.skin = 'kama';
  10. config.width = 'auto';
  11. config.height = 450;
  12. config.fontSize_sizes = '30/30%;50/50%;100/100%;120/120%;150/150%;200/200%;300/300%';
  13. config.uiColor = '#F1F5F2';
  14. config.fullPage = false;
  15. config.autoUpdateElement = true;
  16. config.enterMode = CKEDITOR.ENTER_BR;
  17. config.shiftEnterMode = CKEDITOR.ENTER_P;
  18. config.toolbar = 'Full';
  19. config.toolbar_Full = [
  20. ['Source', '-', 'Templates'],
  21. ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Print'],
  22. ['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
  23. ['ShowBlocks'],
  24. ['Image','Addon'],
  25. ['Maximize'],
  26. ['Table', 'HorizontalRule', 'Smiley', 'SpecialChar'],
  27. ['Link', 'Unlink', 'Anchor'],
  28. '/',
  29. ['Bold', 'Italic', 'Underline', 'Strike', '-'],
  30. ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'],
  31. ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
  32. ['Styles', 'Format', 'Font', 'FontSize'],
  33. ['TextColor', 'BGColor']
  34. ];
  35. config.extraPlugins = 'addon';
  36. };