Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bug in chrome with ckeditor editing links

So basically I have this problem in chrome(Working fine in Firefox). When I edit a content and I have the following situation , a link and some text and when I click at the end of the link to change "some link text" to "some link to website" it does the following

Before editing :

some link text some content

<a href="">some link text </a> some content

some link to website some content

<a href="">some link</a> to website some content
like image 768
ddjikic Avatar asked May 19 '15 17:05

ddjikic


1 Answers

It's a known issue in CKEditor: https://dev.ckeditor.com/ticket/11998

The only workaround would be to type text before the end of that link, and then delete unnecessary characters from the end.

In case of your example start typing "to website" before "text", and then delete "text".

like image 178
Wilq Avatar answered Sep 28 '22 13:09

Wilq