Skip to content

Commit

Permalink
Fix indentation in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
asennikov committed Jun 28, 2016
1 parent d70fde6 commit 18bab4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,11 +350,11 @@ For both the `onClick` and `onDrag` actions, the arguments are `event` and `poly
```javascript
actions: {
onPolylineDrag(event, polyline) {
const bounds = new window.google.maps.LatLngBounds();
const bounds = new window.google.maps.LatLngBounds();

polyline.getPath().forEach((e) => bounds.extend(e));
polyline.map.fitBounds(bounds);
}
polyline.getPath().forEach((e) => bounds.extend(e));
polyline.map.fitBounds(bounds);
}
}
```

Expand Down

0 comments on commit 18bab4c

Please sign in to comment.