Skip to content

Commit

Permalink
Fixed invisible dropdown element in IE for maximized editor.
Browse files Browse the repository at this point in the history
  • Loading branch information
adelura committed Dec 11, 2014
1 parent 05ab2b9 commit 5875b0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/dom/element.js
Expand Up @@ -1425,9 +1425,9 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
}

if ( needAdjustScrollAndBorders ) {
x = box.left + ( !quirks && $docElem.scrollLeft || body.$.scrollLeft );
x = box.left + ( quirks ? body.$.scrollLeft : $docElem.scrollLeft );
x -= clientLeft;
y = box.top + ( !quirks && $docElem.scrollTop || body.$.scrollTop );
y = box.top + ( quirks ? body.$.scrollTop : $docElem.scrollTop );
y -= clientTop;
}
} else {
Expand Down

0 comments on commit 5875b0c

Please sign in to comment.