X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/31a39d3479462ced8127f0f12e3f0133ce39263a..cf3fa3bb2d0beb67ac4944941fc33080b56f0d66:/app/assets/javascripts/application.js diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index 740990fb3..24d50dcce 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 @@ -56,13 +56,12 @@ window.updateLinks = function (loc, zoom, layers, object) { link.href = href; }); + // Disable the button group and also the buttons to avoid + // inconsistent behaviour when zooming var editDisabled = zoom < 13; $("#edit_tab") .tooltip({ placement: "bottom" }) - .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 + .tooltip(editDisabled ? "enable" : "disable") .toggleClass("disabled", editDisabled) .find("a") .toggleClass("disabled", editDisabled); @@ -77,6 +76,9 @@ window.minimiseMap = function () { }; $(document).ready(function () { + $("#edit_tab") + .attr("title", I18n.t("javascripts.site.edit_disabled_tooltip")); + var headerWidth = 0, compactWidth = 0;