Skip to content

Commit 7642fa2

Browse files
committed
Merge branch 't/11074' into major
2 parents 1a7833e + 6336ac0 commit 7642fa2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Fixed Issues:
4949
* [#11082](http://dev.ckeditor.com/ticket/11082): Selected widget is not copied/cut when using toolbar buttons or context menu.
5050
* [#11083](http://dev.ckeditor.com/ticket/11083): Fixed lists and divs application to block widgets.
5151
* [#10887](http://dev.ckeditor.com/ticket/10887): Internet Explorer 8 compatibility issues related to the Widget System.
52+
* [#11074](http://dev.ckeditor.com/ticket/11074): Temporarily disabled inline widgets drag and drop, because of seriously buggy native `range#moveToPoint` method.
5253

5354
## CKEditor 4.3 Beta
5455

plugins/widget/plugin.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -838,6 +838,10 @@
838838
* @property {CKEDITOR.dom.element} wrapper
839839
*/
840840

841+
// #11074 - IE8 throws exceptions when dragging widget using the native method.
842+
if ( this.inline && CKEDITOR.env.ie && CKEDITOR.env.version < 9 )
843+
this.draggable = false;
844+
841845
widgetsRepo.fire( 'instanceCreated', this );
842846

843847
setupWidget( this, widgetDef );

0 commit comments

Comments
 (0)