react-selectize
Advanced tools
Comparing version 0.4.0 to 0.4.1
# React Selectize | ||
## v0.4.1 / 22nd January 2016 | ||
* merged pull request (fixes an issue when unmounting with dropdown open) (#23), thanks @yuters | ||
## v0.4.0 / 21st January 2016 | ||
@@ -4,0 +7,0 @@ * Added two new props `delimiters` & `valuesFromPaste` (#21) |
{ | ||
"name": "react-selectize", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "A Stateless & Flexible Select component for React inspired by Selectize", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -16,3 +16,3 @@ [![npm version](https://badge.fury.io/js/react-selectize.svg)](https://badge.fury.io/js/react-selectize) | ||
- [Changelog](CHANGELOG.md) (last updated on 21st January 2016) | ||
- [Changelog](CHANGELOG.md) (last updated on 22nd January 2016) | ||
- [API Reference](API.md) | ||
@@ -19,0 +19,0 @@ |
@@ -481,3 +481,5 @@ (function(){ | ||
onHeightChange: function(height){ | ||
return findDOMNode(this$.refs['dropdown-transition']).style.height = height + "px"; | ||
if (this$.refs['dropdown-transition']) { | ||
return findDOMNode(this$.refs['dropdown-transition']).style.height = height + "px"; | ||
} | ||
} | ||
@@ -484,0 +486,0 @@ }, this.props.options.length === 0 |
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
2002841
50727