Skip to content

Commit

Permalink
Merge branch 't/11063' into major
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jasiun committed Nov 13, 2013
2 parents 77106de + 1cb8746 commit 9c493a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -55,6 +55,7 @@ Fixed Issues:
* [#11129](http://dev.ckeditor.com/ticket/11129): Pagebreak is lost when loading data.
* [#11123](http://dev.ckeditor.com/ticket/11123): Firefox: widget is destroyed after being dragged outside `body`.
* [#11124](http://dev.ckeditor.com/ticket/11124): Fixed elements path on editor using divarea.
* [#11063](http://dev.ckeditor.com/ticket/11063): Fixed IE11 anchor issue.

## CKEditor 4.3 Beta

Expand Down
4 changes: 2 additions & 2 deletions plugins/link/plugin.js
Expand Up @@ -23,7 +23,7 @@ CKEDITOR.plugins.add( 'link', {
// Show the arrow cursor for the anchor image (FF at least).
'cursor:auto;' +
'}' +
( CKEDITOR.env.ie ? ( 'a.cke_anchor_empty' +
( CKEDITOR.plugins.link.synAnchorSelector ? ( 'a.cke_anchor_empty' +
'{' +
// Make empty anchor selectable on IE.
'display:inline-block;' +
Expand Down Expand Up @@ -276,7 +276,7 @@ CKEDITOR.plugins.link = {
* @readonly
* @property {Boolean}
*/
synAnchorSelector: CKEDITOR.env.ie,
synAnchorSelector: CKEDITOR.env.ie && CKEDITOR.env.version < 11,

/**
* For browsers that have editing issue with empty anchor.
Expand Down

0 comments on commit 9c493a9

Please sign in to comment.