mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-08 12:23:35 +02:00
Fix scrollStop not working sometimes
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user