Skip to content

Commit 8776128

Browse files
Emmylouslaktaion
authored andcommitted
[fixed] Affix in IE10 - scrollHeight react-bootstrap#1073
[fixed] Affix in IE10 - scrollHeight react-bootstrap#1073 after test and build_lib name change delete lib for pr [fixed] Affix in IE10 - scrollHeight react-bootstrap#1073 export getDocumentHeight
1 parent 7bf33d2 commit 8776128

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/AffixMixin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const AffixMixin = {
3838
}
3939

4040
DOMNode = React.findDOMNode(this);
41-
scrollHeight = document.documentElement.offsetHeight;
41+
scrollHeight = domUtils.getDocumentHeight();
4242
scrollTop = window.pageYOffset;
4343
position = domUtils.getOffset(DOMNode);
4444

src/utils/domUtils.js

+10
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,15 @@ function getOffset(DOMNode) {
7878
};
7979
}
8080

81+
/**
82+
* Get the height of the document
83+
*
84+
* @returns {documentHeight: number}
85+
*/
86+
function getDocumentHeight() {
87+
return Math.max(document.documentElement.offsetHeight, document.height, document.body.scrollHeight, document.body.offsetHeight);
88+
}
89+
8190
/**
8291
* Get elements position
8392
*
@@ -205,6 +214,7 @@ export default {
205214
ownerDocument,
206215
getComputedStyles,
207216
getOffset,
217+
getDocumentHeight,
208218
getPosition,
209219
getSize,
210220
activeElement: getActiveElement,

0 commit comments

Comments
 (0)