Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. editor_new = CKEDITOR.appendTo( 'editorSpace',{
  2. on:{
  3. instanceReady: function(ev){
  4. this.dataProcessor.writer.lineBreakChars = '';
  5. this.dataProcessor.writer.setRules( 'p', {
  6. indent: false,
  7. breakBeforeOpen: false,
  8. breakAfterOpen: false,
  9. breakBeforeClose: false,
  10. breakAfterClose: false
  11. });
  12.  
  13. <p>Tony</p>
  14.  
  15. <p>&nbsp;</p>
  16.  
  17. <p>Stark</p>
  18.  
  19. <p>Tony</p>
  20. <p>&nbsp;</p>
  21. <p>Stark</p>
  22.  
  23. <p>Tony</p><p>&nbsp;</p><p>Stark</p>
  24.  
  25. CKEDITOR.replace( 'editor', {
  26. removePlugins: 'htmlwriter'
  27. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement