Skip to content

Commit

Permalink
Breaking: Rename bubblesOptions to bubbleOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
btmills committed Jan 29, 2016
1 parent b4f75ef commit bcef622
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/datamap.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export default React.createClass({
propTypes: {
arc: React.PropTypes.array,
arcOptions: React.PropTypes.object,
bubbleOptions: React.PropTypes.object,
bubbles: React.PropTypes.array,
bubblesOptions: React.PropTypes.object,
graticule: React.PropTypes.bool,
labels: React.PropTypes.bool
},
Expand Down Expand Up @@ -48,7 +48,7 @@ export default React.createClass({
}

if (this.props.bubbles) {
map.bubbles(this.props.bubbles, this.props.bubblesOptions);
map.bubbles(this.props.bubbles, this.props.bubbleOptions);
}

if (this.props.graticule) {
Expand Down

0 comments on commit bcef622

Please sign in to comment.