Fix map edit controls min-zoom behaviour

The map dropdown and tooltip of the map edit controls should
behave similar when zooming in and out.
This is achieved by disabling the button-group and the buttons.
This commit is contained in:
faebebin 2022-06-19 08:15:37 +02:00
parent 0c3551a670
commit 05d2eba921

View file

@ -59,12 +59,14 @@ 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; })
.toggleClass("disabled", editDisabled)
.attr("data-original-title", editDisabled ?
I18n.t("javascripts.site.edit_disabled_tooltip") : "");
};
I18n.t("javascripts.site.edit_disabled_tooltip") : "")
// Disable the button group and also the buttons to avoid
// inconsistent behaviour when zooming
.toggleClass("disabled", editDisabled)
.find("a")
.toggleClass("disabled", editDisabled)
};
window.maximiseMap = function () {
$("#content").addClass("maximised");