virtual-scroll
Advanced tools
Comparing version 1.5.1 to 1.5.2
{ | ||
"name": "virtual-scroll", | ||
"version": "1.5.1", | ||
"version": "1.5.2", | ||
"description": "Smooth fake scroll using CSS transform", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -7,3 +7,3 @@ 'use strict'; | ||
hasMouseWheelEvent: 'onmousewheel' in document, | ||
hasTouch: 'ontouchstart' in document, | ||
hasTouch: ('ontouchstart' in window) || window.TouchEvent || window.DocumentTouch && document instanceof DocumentTouch, | ||
hasTouchWin: navigator.msMaxTouchPoints && navigator.msMaxTouchPoints > 1, | ||
@@ -10,0 +10,0 @@ hasPointer: !!window.navigator.msPointerEnabled, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16128