react-virtualized
Advanced tools
Comparing version 2.7.1 to 2.7.2
Changelog | ||
------------ | ||
#### 2.7.2 | ||
Updated check for undefined `document`. | ||
#### 2.7.1 | ||
@@ -5,0 +8,0 @@ Replaced invalid `rowHeight instanceof Number` check with `typeof rowHeight === 'number'` in `VirtualScroll`. |
@@ -6,3 +6,3 @@ { | ||
"user": "bvaughn", | ||
"version": "2.7.1", | ||
"version": "2.7.2", | ||
"scripts": { | ||
@@ -9,0 +9,0 @@ "build": "npm run build:demo && npm run build:dist", |
@@ -11,3 +11,3 @@ /** | ||
// Check `document` as well in case of server-side rendering (see issue #41) | ||
var attachEvent = document && document.attachEvent; | ||
var attachEvent = typeof document !== 'undefined' && document.attachEvent; | ||
var stylesCreated = false; | ||
@@ -14,0 +14,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
323005