Skip to content

Commit

Permalink
Clarified code with a comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Oct 31, 2013
1 parent fdcda5b commit d08ecca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/wysiwygarea/plugin.js
Expand Up @@ -182,7 +182,8 @@
} );
}

// Fix problem with cursor not appearing in Chrome and IE11 when clicking below the body (#10945, #10906).
// Fix problem with cursor not appearing in Webkit and IE11+ when clicking below the body (#10945, #10906).
// Fix for older IEs (8-10 and QM) is placed inside selection.js.
if ( CKEDITOR.env.webkit || ( CKEDITOR.env.ie && CKEDITOR.env.version > 10 ) ) {
doc.getDocumentElement().on( 'mousedown', function( evt ) {
if ( evt.data.getTarget().is( 'html' ) ) {
Expand Down

0 comments on commit d08ecca

Please sign in to comment.