Skip to content

Commit

Permalink
fix(src): eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchentw committed Jul 1, 2015
1 parent 5d1b08e commit 012faad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/GoogleMaps.js
Expand Up @@ -111,7 +111,7 @@ class GoogleMaps extends EventComponent {
GoogleMaps.propTypes = {
...EventComponent.propTypes,
containerProps: PropTypes.object.isRequired,
bounds: React.PropTypes.object
bounds: React.PropTypes.object,
};

GoogleMaps._registerEvents = createRegisterEvents(
Expand Down
6 changes: 3 additions & 3 deletions src/OverlayView.js
Expand Up @@ -38,13 +38,13 @@ OverlayView.propTypes = {
OverlayView.MAP_PANE,
OverlayView.MARKER_LAYER,
OverlayView.OVERLAY_LAYER,
OverlayView.OVERLAY_MOUSE_TARGET
OverlayView.OVERLAY_MOUSE_TARGET,
]),
getPixelPositionOffset: React.PropTypes.func
getPixelPositionOffset: React.PropTypes.func,
};

OverlayView.defaultProps = {
mapPane: OverlayView.OVERLAY_LAYER
mapPane: OverlayView.OVERLAY_LAYER,
};

OverlayView._registerEvents = createRegisterEvents(
Expand Down
2 changes: 1 addition & 1 deletion src/addons/InfoBox.js
Expand Up @@ -40,7 +40,7 @@ class InfoBox extends SimpleChildComponent {

InfoBox.propTypes = {
...SimpleChildComponent.propTypes,
anchor: PropTypes.object
anchor: PropTypes.object,
};

InfoBox._GoogleMapsClassName = "InfoBox";
Expand Down

0 comments on commit 012faad

Please sign in to comment.