brstuff / ckawesome

CKAwesome is a Font Awesome plugin for CKEditor.
http://io.brstuff.com/ckawesome/
GNU General Public License v3.0
4 stars 6 forks source link

When an icon is inserted at the beginning of the paragraph one can't delete it. #3

Closed yerzhant closed 6 years ago

yerzhant commented 7 years ago

How to reproduce:

sebastiansulinski commented 7 years ago

This is happening because plugin as it stands adds the empty span tag.

What you need to do is to update ckawesome/dialogs/ckawesome.js by adding cka.appendHtml(" "); somewhere before call to editor.insertElement(cka); i.e.

cka.appendHtml(" ");

editor.insertElement(cka);

I've added pull request for this fix #6

brstuff commented 6 years ago

Fixed with #6 . Thanks Sebastian.

yerzhant commented 6 years ago

Thank you Sebastian and brstuff.