Guest User

Untitled

a guest
Oct 17th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. CKEDITOR.editorConfig = function( config )
  2. {
  3. config.fillEmptyBlocks = false ;
  4. config.disableNativeSpellChecker = false;
  5. config.browserContextMenuOnCtrl = true;
  6. config.DekiTabSpaces = 2;
  7.  
  8. config.extraPlugins = "mdc,definitionlist,tablesort,enterkey";
  9.  
  10. config.toolbar_MDC = [
  11. ['MindTouchDeki_Save', '-', 'Source'],
  12. ['Undo' , 'Redo', '-', 'Find', 'Replace', '-', 'RemoveFormat', '-', 'TextColor', 'BGColor'],
  13. ['MindTouchDeki_InsertExtension', '-', 'MindTouchDeki_Transform'],
  14. '/',
  15. ['MindTouchDeki_Cancel'],
  16. ['PasteText'],
  17. ['Bold', 'Italic', 'Underline', 'StrikeThrough', '-', 'DefinitionList','DefinitionTerm','DefinitionDescription','-','OrderedList', 'UnorderedList', '-', 'Outdent', 'Indent', 'Blockquote', 'CreateDiv'],
  18. ['MindTouchDeki_InsertLink','Unlink', 'Anchor', '-', 'MindTouchDeki_InsertImage', 'MindTouchDeki_AttachImage', 'MindTouchDeki_InsertVideo', 'MindTouchDeki_InsertTemplate', 'Table'],
  19. '/',
  20. ['Style', 'FontFormat', 'FontName' ,'FontSize', '-', 'FitWindow']
  21. ] ;
  22.  
  23. config.toolbar = 'MDC';
  24.  
  25. config.stylesSet =
  26. [
  27. { name: "None", element: 'p' },
  28. { name: "Code (inline)", element: 'code' },
  29. { name: "Note box", element: 'div', attributes: { 'class': 'note' }},
  30. { name: "Warning box", element: 'div', attributes: { 'class': 'warning' }},
  31. { name: "Disable wiki processing", element: 'span', attributes: { 'class': 'plain' }}
  32. ];
  33.  
  34. config.fontNames= 'Courier New;Helvetica;Verdana;Georgia;Times New Roman' ;
  35. }
Add Comment
Please, Sign In to add comment