We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
## 安卓手机滚动下一页会出现白屏 撸了下代码发现是getOffset方法有块地方不兼容 ,第686行 return document.documentElement[this.directionKey]; 可替换为 return document.documentElement[this.directionKey]||document.body[this.directionKey]; getOffset: function getOffset() { if (this.pageMode) { return document.documentElement[this.directionKey]||document.body[this.directionKey]; } else { var root = this.$refs.root; return root ? Math.ceil(root[this.directionKey]) : 0; } },
The text was updated successfully, but these errors were encountered:
你的页面是不是没加 DTD(<!doctype html>)?
Sorry, something went wrong.
你的页面是不是没加DTD(<!doctype html>)? 加了
Fix scroll offset in page mode #234
67a796b
感谢定位,在 v2.2.8 版本修复了。
No branches or pull requests
The text was updated successfully, but these errors were encountered: