Stop drag propagation, fixes #4249

This commit is contained in:
Bjorn Sandvik 2016-03-07 12:53:50 +01:00
parent 7ebbd19737
commit a32017f890

View File

@ -60,6 +60,8 @@ L.Draggable = L.Evented.extend({
if (this._moving) { return; }
L.DomEvent.stopPropagation(e);
this.fire('down');
var first = e.touches ? e.touches[0] : e;