Skip to content

Commit

Permalink
Merge branch 't/11198'
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Nov 22, 2013
2 parents b94d536 + 78867c5 commit b734293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -10,6 +10,7 @@ CKEditor 4 Changelog
Fixed Issues:

* [#11159](http://dev.ckeditor.com/ticket/11159): [Enhanced Image](http://ckeditor.com/addon/image2): Fixed buggy discovery of image dimensions in IE9 and IE10.
* [#11198](http://dev.ckeditor.com/ticket/11198): Widgets: Drag handler is not fully visible when inline widget is in a heading.

## CKEditor 4.3

Expand Down
4 changes: 3 additions & 1 deletion plugins/widget/plugin.js
Expand Up @@ -45,7 +45,9 @@
'width:' + DRAG_HANDLER_SIZE + 'px;' +
'height:0;' +
'opacity:0.75;' +
'transition:height 0s 0.2s' + // Delay hiding drag handler.
'transition:height 0s 0.2s;' + // Delay hiding drag handler.
// Prevent drag handler from being misplaced (#11198).
'line-height:0' +
'}' +
'.cke_widget_wrapper:hover>.cke_widget_drag_handler_container{' +
'height:' + DRAG_HANDLER_SIZE + 'px;' +
Expand Down

0 comments on commit b734293

Please sign in to comment.