Skip to content

Commit 32485fa

Browse files
committed
Merge branch 't/11140b'
2 parents feba862 + b164d54 commit 32485fa

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ CKEditor 4 Changelog
2121
* [#10762](http://dev.ckeditor.com/ticket/10762): [IE] Fixed: JavaScript code displayed in preview window's URL bar.
2222
* [#11186](http://dev.ckeditor.com/ticket/11186): Introduced the [`widgets.repository.addUpcastCallback`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-method-addUpcastCallback) method which allows to block upcasting given element to a widget.
2323
* [#11307](http://dev.ckeditor.com/ticket/11307): Fixed: Paste as plain text conflict with the [MooTools](http://mootools.net) library.
24+
* [#11140](http://dev.ckeditor.com/ticket/11140): [IE11] Fixed: Anchors are not draggable.
2425

2526

2627
## CKEditor 4.3.1

plugins/link/plugin.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ CKEDITOR.plugins.add( 'link', {
2727
'{' +
2828
// Make empty anchor selectable on IE.
2929
'display:inline-block;' +
30+
// IE11 doesn't display empty inline-block elements.
31+
( CKEDITOR.env.ie && CKEDITOR.env.version > 10 ? 'min-height:16px;vertical-align:middle' : '' ) +
3032
'}'
3133
) : '' ) +
3234
'.%2 img.cke_anchor' +
@@ -276,7 +278,7 @@ CKEDITOR.plugins.link = {
276278
* @readonly
277279
* @property {Boolean}
278280
*/
279-
synAnchorSelector: CKEDITOR.env.ie && CKEDITOR.env.version < 11,
281+
synAnchorSelector: CKEDITOR.env.ie,
280282

281283
/**
282284
* For browsers that have editing issue with empty anchor.

0 commit comments

Comments
 (0)