diff --git a/CHANGELOG.md b/CHANGELOG.md index 777cb6ca..e9bc6c9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ Leaflet Changelog ### Bug fixes * Fixed a bug where `TileLayer.WMS` wouldn't take `insertAtTheBottom` option into account (by [@bmcbride](https://github.com/bmcbride)). [#478](https://github.com/CloudMade/Leaflet/pull/478) + * Fixed a bug where marker click event would stop working if you dragged it and then disabled dragging. [#434](https://github.com/CloudMade/Leaflet/issues/434) ## 0.3.2 RC diff --git a/src/dom/Draggable.js b/src/dom/Draggable.js index 53a00916..b13ca610 100644 --- a/src/dom/Draggable.js +++ b/src/dom/Draggable.js @@ -31,6 +31,7 @@ L.Draggable = L.Class.extend({ } L.DomEvent.removeListener(this._dragStartTarget, L.Draggable.START, this._onDown); this._enabled = false; + this._moved = false; }, _onDown: function (e) {