]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/leaflet.share.js
Prevent click propagation on ui panes
[rails.git] / app / assets / javascripts / leaflet.share.js
index eced07a7ca53cea282cd9834d82916ea59ed1744..7d5eb0cc9780bd472a4869e7202532ce6a0e614f 100644 (file)
@@ -19,6 +19,15 @@ L.Control.Share = L.Control.extend({
         link.title = this.options.title;
 
         this._uiPane = L.DomUtil.create('div', 'leaflet-map-ui', map._container);
+
+        L.DomEvent
+            .on(this._uiPane, 'click', L.DomEvent.stopPropagation)
+            .on(this._uiPane, 'click', L.DomEvent.preventDefault)
+            .on(this._uiPane, 'dblclick', L.DomEvent.preventDefault);
+
+        var h2 = L.DomUtil.create('h2', '', this._uiPane);
+        h2.innerHTML = I18n.t('javascripts.share.title');
+
         this._linkInput = L.DomUtil.create('input', '', this._uiPane);
 
         L.DomEvent