To solve this problem, find and replace this line in core.js
var lGCWindowHeight=document.documentElement.scrollHeight;
with
var lGCWindowHeight=(document.documentElement.scrollHeight>document.documentElement.clientHeight) ? document.documentElement.clientHeight : document.documentElement.scrollHeight;
No comments:
Post a Comment