Opened 11 years ago
Last modified 11 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
- Use standard editor but add indentblock plugin to it.
- Set below configuration:
CKEDITOR.replace( 'editor1', { removePlugins : 'format', extraPlugins : 'indentblock', enterMode : CKEDITOR.ENTER_DIV } ); - 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 11 years ago by
| Status: | new → confirmed |
|---|

Possible workaround:
CKEDITOR.replace( 'editor1', { removePlugins : 'format', extraPlugins : 'indentblock', enterMode : CKEDITOR.ENTER_DIV extraAllowedContent : 'p{margin-left}' } );