@pushword/js-helper 0.0.114 → 0.0.115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/HorizontalScroll.js +1 -1
- package/src/ScrollEnhancer.js +2 -2
package/package.json
CHANGED
package/src/HorizontalScroll.js
CHANGED
package/src/ScrollEnhancer.js
CHANGED
|
@@ -65,7 +65,7 @@ class ScrollYEnhancer {
|
|
|
65
65
|
} else window.lastScrollTime = new Date().getTime()
|
|
66
66
|
window.isScrolling = false
|
|
67
67
|
},
|
|
68
|
-
{ passive:
|
|
68
|
+
{ passive: false },
|
|
69
69
|
)
|
|
70
70
|
}
|
|
71
71
|
|
|
@@ -189,7 +189,7 @@ class ScrollXEnhancer {
|
|
|
189
189
|
} else window.lastScrollTime = new Date().getTime()
|
|
190
190
|
window.isScrolling = false
|
|
191
191
|
},
|
|
192
|
-
{ passive:
|
|
192
|
+
{ passive: false },
|
|
193
193
|
)
|
|
194
194
|
}
|
|
195
195
|
|