react-google-maps
Advanced tools
Comparing version 4.3.2 to 4.3.3
@@ -0,1 +1,11 @@ | ||
<a name="4.3.3"></a> | ||
## [4.3.3](https://github.com/tomchentw/react-google-maps/compare/v4.3.2...v4.3.3) (2015-11-18) | ||
### Bug Fixes | ||
* **OverlayView:** redraw only when props.mapPaneName changes ([ff4473d](https://github.com/tomchentw/react-google-maps/commit/ff4473d)), closes [#147](https://github.com/tomchentw/react-google-maps/issues/147) [#148](https://github.com/tomchentw/react-google-maps/issues/148) | ||
<a name="4.3.2"></a> | ||
@@ -2,0 +12,0 @@ ## [4.3.2](https://github.com/tomchentw/react-google-maps/compare/v4.3.1...v4.3.2) (2015-11-17) |
@@ -82,3 +82,3 @@ "use strict"; | ||
this.getOverlayView().setValues(this.props); | ||
this.getOverlayView()._redraw(this.props.mapPaneName !== prevProps); | ||
this.getOverlayView()._redraw(this.props.mapPaneName !== prevProps.mapPaneName); | ||
} | ||
@@ -85,0 +85,0 @@ }, { |
{ | ||
"__template__gist__": "https://gist.github.com/tomchentw/368a93bb748ad9d576f1#file-package-json", | ||
"name": "react-google-maps", | ||
"version": "4.3.2", | ||
"version": "4.3.3", | ||
"description": "React.js Google Maps integration component", | ||
@@ -6,0 +6,0 @@ "main": "lib/index.js", |
@@ -149,3 +149,3 @@ import { | ||
this.getOverlayView().setValues(this.props); | ||
this.getOverlayView()._redraw(this.props.mapPaneName !== prevProps); | ||
this.getOverlayView()._redraw(this.props.mapPaneName !== prevProps.mapPaneName); | ||
} | ||
@@ -152,0 +152,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
287134