File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Fixed Issues:
16
16
* [ #11814 ] ( http://dev.ckeditor.com/ticket/11814 ) : Fixed: _ Link_ and _ Unlink_ entries persistently displayed in [ Enhanced Image] ( http://ckeditor.com/addon/image2 ) context menu.
17
17
* [ #11839 ] ( http://dev.ckeditor.com/ticket/11839 ) : Fixed: [ IE9] Caret jumps out of editable when resizing editor in source mode.
18
18
* [ #11880 ] ( http://dev.ckeditor.com/ticket/11880 ) : Fixed: [ IE8-9] Linked image has a default thick border.
19
+ * [ #11822 ] ( http://dev.ckeditor.com/ticket/11822 ) : Fixed: [ Webkit] Anchors editing by double click broken in some cases.
19
20
20
21
Other changes:
21
22
Original file line number Diff line number Diff line change 105
105
106
106
// If event was cancelled, link passed in event data will not be selected.
107
107
editor . on ( 'doubleclick' , function ( evt ) {
108
- if ( evt . data . dialog == 'link' && evt . data . link )
108
+ // Make sure both links and anchors are selected (#11822).
109
+ if ( evt . data . link )
109
110
editor . getSelection ( ) . selectElement ( evt . data . link ) ;
110
111
} , null , null , 20 ) ;
111
112
You can’t perform that action at this time.
0 commit comments