YiiBooster
YiiBooster copied to clipboard
enterMode in CKEditor doesn't work
How to configure ckeditor to not wrap content in tag p?
I tried add to config.js this string
config.enterMode = CKEDITOR.ENTER_BR;
And tried
'editorOptions' => array(
'enterMode' => 'CKEDITOR.ENTER_BR',
)
It doesn't work.
I have the same problem.
Solved, just replace
this:
'enterMode' => 'CKEDITOR.ENTER_BR',
for this:
'enterMode' => 3,