X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/549acfa918c04fa20b3386fece25ce69b3565519..6db326aa1f084a062a3b658876bc01bf650f5702:/app/assets/javascripts/leaflet.zoom.js diff --git a/app/assets/javascripts/leaflet.zoom.js b/app/assets/javascripts/leaflet.zoom.js index 0ef0f64de..e7c048b2d 100644 --- a/app/assets/javascripts/leaflet.zoom.js +++ b/app/assets/javascripts/leaflet.zoom.js @@ -1,26 +1,26 @@ L.OSM.Zoom = L.Control.extend({ options: { - position: 'topright' + position: "topright" }, onAdd: function (map) { - var zoomName = 'zoom', - container = L.DomUtil.create('div', zoomName); + var zoomName = "zoom", + container = L.DomUtil.create("div", zoomName); this._map = map; - this._zoomInButton = this._createButton( - '', I18n.t('javascripts.map.zoom.in'), zoomName + 'in', container, this._zoomIn, this); + this._zoomInButton = this._createButton( + "", I18n.t("javascripts.map.zoom.in"), zoomName + "in", container, this._zoomIn, this); this._zoomOutButton = this._createButton( - '', I18n.t('javascripts.map.zoom.out'), zoomName + 'out', container, this._zoomOut, this); + "", I18n.t("javascripts.map.zoom.out"), zoomName + "out", container, this._zoomOut, this); - map.on('zoomend zoomlevelschange', this._updateDisabled, this); + map.on("zoomend zoomlevelschange", this._updateDisabled, this); return container; }, onRemove: function (map) { - map.off('zoomend zoomlevelschange', this._updateDisabled, this); + map.off("zoomend zoomlevelschange", this._updateDisabled, this); }, _zoomIn: function (e) { @@ -32,28 +32,28 @@ L.OSM.Zoom = L.Control.extend({ }, _createButton: function (html, title, className, container, fn, context) { - var link = L.DomUtil.create('a', 'control-button ' + className, container); + var link = L.DomUtil.create("a", "control-button " + className, container); link.innerHTML = html; - link.href = '#'; + link.href = "#"; link.title = title; - L.DomUtil.create('span', 'icon ' + className, link); + L.DomUtil.create("span", "icon " + className, link); var stop = L.DomEvent.stopPropagation; L.DomEvent - .on(link, 'click', stop) - .on(link, 'mousedown', stop) - .on(link, 'dblclick', stop) - .on(link, 'click', L.DomEvent.preventDefault) - .on(link, 'click', fn, context); + .on(link, "click", stop) + .on(link, "mousedown", stop) + .on(link, "dblclick", stop) + .on(link, "click", L.DomEvent.preventDefault) + .on(link, "click", fn, context); return link; }, _updateDisabled: function () { var map = this._map, - className = 'disabled'; + className = "disabled"; L.DomUtil.removeClass(this._zoomInButton, className); L.DomUtil.removeClass(this._zoomOutButton, className);