(el)
| 2888 | // Adds `stopPropagation` to the element's `'click'`, `'dblclick'`, `'contextmenu'`, |
| 2889 | // `'mousedown'` and `'touchstart'` events (plus browser variants). |
| 2890 | function disableClickPropagation(el) { |
| 2891 | on(el, 'mousedown touchstart dblclick contextmenu', stopPropagation); |
| 2892 | el['_leaflet_disable_click'] = true; |
| 2893 | return this; |
| 2894 | } |
| 2895 | |
| 2896 | // @function preventDefault(ev: DOMEvent): this |
| 2897 | // Prevents the default action of the DOM Event `ev` from happening (such as |