"Remove Link" button stays disabled when links are selected
Reported by: |
dave |
Owned by: |
|
Priority:
|
Normal
|
Milestone:
|
|
Component:
|
General
|
Version:
|
|
Keywords:
|
|
Cc:
|
|
Steps to reproduce (any browser):
- Navigate to demo page: http://ckeditor.com/demo
- Click inside the editor to give it focus
- Select all the text by typing CTRL-A
Expected behavior is RemoveLink button becomes enabled. This was working fine in previous versions.
Change History (2)
Description: |
modified (diff)
|
Keywords: |
remove link removed
|
Resolution: |
→ invalid
|
Status: |
new →
closed
|
Version: |
3.6.4
|
It has never worked like you have described it.
The only time when unlink button get enabled and it is possible to unlink all links in text after pressing CRTL+A is when selection starts with link (link is at the beginning of selected text). But this is not a bug but rather accidental extra feature.
The main reason for not analysing whole text is performance. Editor can't search whole selection for links, images, form elements etc. because it would simply take too long.
So instead, editor is analysing only boundary of selection (beginning in this case) and if there is a link unlink button gets enabled.