Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

Use scrollHeight instead of offsetHeight #14

Merged
merged 1 commit into from
Jan 5, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion smooth-scroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
// Stop animation when you reach the anchor OR the bottom of the page
stopAnimation = function () {
var travelled = window.pageYOffset;
if ( (travelled >= (endLocation(anchor) - increments)) || ((window.innerHeight + travelled) >= document.body.offsetHeight) ) {
if ( (travelled >= (endLocation(anchor) - increments)) || ((window.innerHeight + travelled) >= document.body.scrollHeight) ) {
clearInterval(runAnimation);
}
};
Expand Down