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:
parent
0c3551a670
commit
05d2eba921
1 changed files with 7 additions and 5 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue