virtual-scroll
Advanced tools
Comparing version 2.1.0 to 2.1.1
{ | ||
"name": "virtual-scroll", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Custom scroll events for smooth, fake scroll", | ||
@@ -5,0 +5,0 @@ "main": "lib/virtualscroll.js", |
@@ -151,7 +151,4 @@ import Emitter from 'tiny-emitter' | ||
break | ||
case keyCodes.SPACE && e.shiftKey: | ||
evt.deltaY = windowHeight | ||
break | ||
case keyCodes.SPACE: | ||
evt.deltaY = -windowHeight | ||
evt.deltaY = windowHeight * (e.shiftKey ? 1 : -1) | ||
break | ||
@@ -265,2 +262,2 @@ default: | ||
}) | ||
} | ||
} |
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
22471
387