Fix, I see no reason now to prevent mouseDown event propagation (#248)

This commit is contained in:
Ivan Starkov 2016-09-27 14:49:54 +03:00 committed by GitHub
parent 5eef490c44
commit b8bf3ad03f

View File

@ -786,10 +786,6 @@ export default class GoogleMap extends Component {
if (!this.mouseInMap_) return;
this._onMapMouseDown(event);
if (this.props.draggable === false) {
event.preventDefault();
event.stopPropagation();
}
}
_onMapMouseDown = (event) => {