Fix minzoom alert
This commit is contained in:
parent
3792551f48
commit
5cf26d0559
1 changed files with 15 additions and 14 deletions
|
@ -99,25 +99,26 @@ function updatelinks(loc, zoom, layers, bounds, object) {
|
|||
|
||||
var minzoom = $(link).data("minzoom");
|
||||
if (minzoom) {
|
||||
var name = link.id.replace(/anchor$/, "");
|
||||
$(link).off("click.minzoom");
|
||||
if (zoom >= minzoom) {
|
||||
$(link).attr("title", I18n.t("javascripts.site." + name + "_tooltip"))
|
||||
.removeClass("disabled");
|
||||
} else {
|
||||
$(link).on("click.minzoom", minZoomAlert)
|
||||
.attr("title", I18n.t("javascripts.site." + name + "_disabled_tooltip"))
|
||||
.addClass("disabled");
|
||||
}
|
||||
var name = link.id.replace(/anchor$/, "");
|
||||
$(link).off("click.minzoom");
|
||||
if (zoom >= minzoom) {
|
||||
$(link)
|
||||
.attr("title", I18n.t("javascripts.site." + name + "_tooltip"))
|
||||
.removeClass("disabled");
|
||||
} else {
|
||||
$(link)
|
||||
.attr("title", I18n.t("javascripts.site." + name + "_disabled_tooltip"))
|
||||
.addClass("disabled")
|
||||
.on("click.minzoom", function () {
|
||||
alert(I18n.t("javascripts.site." + name + "_zoom_alert"));
|
||||
return false;
|
||||
});
|
||||
}
|
||||
}
|
||||
link.href = base + '?' + querystring.stringify(args);
|
||||
}
|
||||
}
|
||||
|
||||
function minZoomAlert() {
|
||||
alert(I18n.t("javascripts.site." + name + "_zoom_alert")); return false;
|
||||
}
|
||||
|
||||
function getShortUrl(map) {
|
||||
return (window.location.hostname.match(/^www\.openstreetmap\.org/i) ?
|
||||
'http://osm.org/go/' : 'http://' + window.location.hostname + '/go/') +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue