Skip to content

Commit 7d8acdc

Browse files
committed
- Fixed scrollOverflow delay until the mouse was moved. alvarotrigo#389
1 parent 06c1147 commit 7d8acdc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

jquery.fullPage.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* fullPage 2.0.7
2+
* fullPage 2.0.8
33
* https://github.com/alvarotrigo/fullPage.js
44
* MIT licensed
55
*
@@ -1152,7 +1152,7 @@
11521152
if(type === 'top'){
11531153
return !scrollable.scrollTop();
11541154
}else if(type === 'bottom'){
1155-
return scrollable.scrollTop() + scrollable.innerHeight() >= scrollable[0].scrollHeight;
1155+
return scrollable.scrollTop() + 1 + scrollable.innerHeight() >= scrollable[0].scrollHeight;
11561156
}
11571157
}
11581158

jquery.fullPage.min.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)