Guest User

Untitled

a guest
Dec 10th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. CKEDITOR.editorConfig = function( config )
  2. {
  3.  
  4. config.skins = 'office2003';
  5.  
  6. config.toolbar = 'toolbarLight';
  7.  
  8.  
  9. config.toolbar_toolbarLight =
  10. [
  11. ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'],
  12. ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
  13. ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar', 'Link','Unlink','Anchor', 'Maximize'] ,
  14. '/',
  15. ['Styles','Format','Font','FontSize', 'Bold','Italic','Strike','NumberedList','BulletedList','Outdent','Indent','Blockquote', 'TextColor','BGColor'],
  16.  
  17. ];
  18.  
  19. config.toolbar_Fullx =
  20. [
  21. ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
  22. ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
  23. ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
  24. '/',
  25. ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
  26. ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
  27. ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
  28. ['Link','Unlink','Anchor'],
  29. ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar'],
  30. '/',
  31. ['Styles','Format','Font','FontSize'],
  32. ['TextColor','BGColor'],
  33. ['Maximize', 'ShowBlocks']
  34. ];
  35.  
  36. };
Add Comment
Please, Sign In to add comment