Skip to content

Commit 66e41a4

Browse files
author
Jimmy Jia
committed
[fixed] Fix scroll top calculation for overlays
Fixes react-bootstrap#724
1 parent ed3f641 commit 66e41a4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/OverlayTrigger.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -281,19 +281,21 @@ const OverlayTrigger = React.createClass({
281281

282282
_getContainerDimensions() {
283283
const containerNode = this.getContainerDOMNode();
284-
let width, height;
284+
let width, height, scroll;
285+
285286
if (containerNode.tagName === 'BODY') {
286287
width = window.innerWidth;
287288
height = window.innerHeight;
289+
scroll =
290+
domUtils.ownerDocument(containerNode).documentElement.scrollTop ||
291+
containerNode.scrollTop;
288292
} else {
289293
width = containerNode.offsetWidth;
290294
height = containerNode.offsetHeight;
295+
scroll = containerNode.scrollTop;
291296
}
292297

293-
return {
294-
width, height,
295-
scroll: containerNode.scrollTop
296-
};
298+
return {width, height, scroll};
297299
},
298300

299301
getPosition() {

0 commit comments

Comments
 (0)