提交 3f0a9bde 编写于 作者: P pangjian

Fix(utils): Chrome < 44 not support scrollingElement

上级 82ce3960
...@@ -147,10 +147,12 @@ function find(ctx, tagName, iterator) { ...@@ -147,10 +147,12 @@ function find(ctx, tagName, iterator) {
function getWindowScrollingElement() { function getWindowScrollingElement() {
if (IE11OrLess) { let scrollingElement = document.scrollingElement;
return document.documentElement;
if (scrollingElement) {
return scrollingElement
} else { } else {
return document.scrollingElement; return document.documentElement
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册