- 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)
- .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;
- });
- }
+ // Disable the button group and also the buttons to avoid
+ // inconsistent behaviour when zooming
+ var editDisabled = zoom < 13;
+ $("#edit_tab")
+ .tooltip({ placement: "bottom" })
+ .tooltip(editDisabled ? "enable" : "disable")
+ .toggleClass("disabled", editDisabled)
+ .find("a")
+ .toggleClass("disabled", editDisabled);
+};
+
+$(document).ready(function () {
+ // NB: Turns Turbo Drive off by default. Turbo Drive must be opt-in on a per-link and per-form basis
+ // See https://turbo.hotwired.dev/reference/drive#turbo.session.drive
+ Turbo.session.drive = false;
+
+ var headerWidth = 0,
+ compactWidth = 0;
+
+ function updateHeader() {
+ var windowWidth = $(window).width();
+
+ if (windowWidth < compactWidth) {
+ $("body").removeClass("compact-nav").addClass("small-nav");
+ } else if (windowWidth < headerWidth) {
+ $("body").addClass("compact-nav").removeClass("small-nav");
+ } else {
+ $("body").removeClass("compact-nav").removeClass("small-nav");