X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/550c4a3a45814fde5c809334c85f1ebc47659a82..58f0eea2a4aba52858361915157a06d0087a99e4:/app/assets/javascripts/application.js diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index 03def573d..89f60847f 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -13,7 +13,7 @@ //= require leaflet.locationfilter //= require i18n //= require oauth -//= require piwik +//= require matomo //= require richtext //= require qs/dist/qs //= require bs-custom-file-input @@ -59,11 +59,13 @@ window.updateLinks = function (loc, zoom, layers, object) { var editDisabled = zoom < 13; $("#edit_tab") .tooltip({ placement: "bottom" }) - .off("click.minzoom") - .on("click.minzoom", function () { return !editDisabled; }) + .attr("data-bs-original-title", editDisabled ? + I18n.t("javascripts.site.edit_disabled_tooltip") : "") + // Disable the button group and also the buttons to avoid + // inconsistent behaviour when zooming .toggleClass("disabled", editDisabled) - .attr("data-original-title", editDisabled ? - I18n.t("javascripts.site.edit_disabled_tooltip") : ""); + .find("a") + .toggleClass("disabled", editDisabled); }; window.maximiseMap = function () {