Guest User

Untitled

a guest
Feb 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. CKEDITOR.replace( fieldId,
  2. {
  3. height:heightVal,width:widthVal,
  4. toolbar: [
  5. { name: 'document', items: [ 'Source' ] },
  6. { name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', 'Undo', 'Redo'] },
  7. { name: 'editing', items: [ 'Find', 'Replace', '-', 'SelectAll' ] },
  8. { name: 'basicstyles', items: [ 'Bold', 'Italic', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
  9. { name: 'tools', items: [ 'Maximize' ] },
  10. { name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] },
  11. { name: 'links', items: [ 'Link', 'Unlink'] },
  12. { name: 'insert', items: [ 'Image', 'Table', 'Flash', 'Video'] },
  13. { name: 'colors', items: [ 'TextColor' ] },
  14. { name: 'styles', items: [ 'Styles' ,'FontSize']},
  15. { name: 'about', items: [ 'About' ] }
  16. ],
  17. enterMode : CKEDITOR.ENTER_DIV
  18. }
  19.  
  20. );
  21.  
  22. enterMode : CKEDITOR.ENTER_P
Add Comment
Please, Sign In to add comment