Fix scrollStop not working sometimes

This commit is contained in:
Peter Jaszkowiak
2017-06-30 23:38:52 -06:00
parent 6cb8440715
commit f1c955e6fc

View File

@@ -16,7 +16,7 @@ define('scrollStop', function () {
$(element).on('mousewheel', function (e) {
var scrollTop = this.scrollTop;
var scrollHeight = this.scrollHeight;
var elementHeight = this.getBoundingClientRect().height;
var elementHeight = Math.round(this.getBoundingClientRect().height);
if (
(e.originalEvent.deltaY < 0 && scrollTop === 0) || // scroll up