We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed3f641 commit 66e41a4Copy full SHA for 66e41a4
src/OverlayTrigger.js
@@ -281,19 +281,21 @@ const OverlayTrigger = React.createClass({
281
282
_getContainerDimensions() {
283
const containerNode = this.getContainerDOMNode();
284
- let width, height;
+ let width, height, scroll;
285
+
286
if (containerNode.tagName === 'BODY') {
287
width = window.innerWidth;
288
height = window.innerHeight;
289
+ scroll =
290
+ domUtils.ownerDocument(containerNode).documentElement.scrollTop ||
291
+ containerNode.scrollTop;
292
} else {
293
width = containerNode.offsetWidth;
294
height = containerNode.offsetHeight;
295
+ scroll = containerNode.scrollTop;
296
}
297
- return {
- width, height,
- scroll: containerNode.scrollTop
- };
298
+ return {width, height, scroll};
299
},
300
301
getPosition() {
0 commit comments