Opened 10 years ago

Last modified 10 years ago

#12201 confirmed Bug

[ACF]: Missing Format plugin breaks indentation

Reported by: Jakub Ś Owned by:
Priority: Normal Milestone:
Component: General Version: 4.3
Keywords: Cc:

Description

  1. Use standard editor but add indentblock plugin to it.
  2. Set below configuration:
    CKEDITOR.replace( 'editor1', {
      removePlugins : 'format',
      extraPlugins : 'indentblock',
      enterMode : CKEDITOR.ENTER_DIV
    } );
    
  3. Go to test page and try to indent any div block. It is impossible.

Problem can be reproduced on all browsers from CKEditor 4.3

Change History (2)

comment:1 Changed 10 years ago by Jakub Ś

Status: newconfirmed

comment:2 Changed 10 years ago by Jakub Ś

Possible workaround:

CKEDITOR.replace( 'editor1', {
    removePlugins : 'format',
    extraPlugins : 'indentblock',
    enterMode : CKEDITOR.ENTER_DIV
    extraAllowedContent : 'p{margin-left}'				
} );
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy