How to Rid of Large Spacing in CKEditor?

后端 未结 2 860
无人共我
无人共我 2021-02-07 08:43

\"enter

I installed CKEditor, i found it causes large space between lines even though i\'m

2条回答
  •  不思量自难忘°
    2021-02-07 09:31

    I found it easier to hardcode this. Open the file sites/all/libraries/ckeditor/ckeditor.js in Notepad++ Go to line 22 or search for shiftEnterMode

    Change following:

    enterMode:1,forceEnterMode:false,shiftEnterMode:2,
    

    into:

    enterMode:2,forceEnterMode:false,shiftEnterMode:1,
    

    done!

提交回复
热议问题