3 //= require jquery.timers
4 //= require jquery.throttle-debounce
5 //= require js-cookie/dist/js.cookie
7 //= require bootstrap-sprockets
9 //= require leaflet/dist/leaflet-src
10 //= require leaflet.osm
11 //= require leaflet.map
12 //= require leaflet.zoom
13 //= require leaflet.locationfilter
18 //= require qs/dist/qs
19 //= require bs-custom-file-input
20 //= require bs-custom-file-input-init
23 * Called as the user scrolls/zooms around to manipulate hrefs of the
24 * view tab and various other links
26 window.updateLinks = function (loc, zoom, layers, object) {
27 $(".geolink").each(function (index, link) {
28 var href = link.href.split(/[?#]/)[0],
29 args = Qs.parse(link.search.substring(1)),
30 editlink = $(link).hasClass("editlink");
35 delete args.changeset;
38 if (object && editlink) {
39 args[object.type] = object.id;
42 var query = Qs.stringify(args);
43 if (query) href += "?" + query;
47 lon: "lon" in loc ? loc.lon : loc.lng,
51 if (layers && !editlink) {
55 href += OSM.formatHash(args);
60 // Disable the button group and also the buttons to avoid
61 // inconsistent behaviour when zooming
62 var editDisabled = zoom < 13;
64 .tooltip({ placement: "bottom" })
65 .tooltip(editDisabled ? "enable" : "disable")
66 .toggleClass("disabled", editDisabled)
68 .toggleClass("disabled", editDisabled);
71 $(document).ready(function () {
75 function updateHeader() {
76 var windowWidth = $(window).width();
78 if (windowWidth < compactWidth) {
79 $("body").removeClass("compact-nav").addClass("small-nav");
80 } else if (windowWidth < headerWidth) {
81 $("body").addClass("compact-nav").removeClass("small-nav");
83 $("body").removeClass("compact-nav").removeClass("small-nav");
88 * Chrome 60 and later seem to fire the "ready" callback
89 * before the DOM is fully ready causing us to measure the
90 * wrong sizes for the header elements - use a 0ms timeout
91 * to defer the measurement slightly as a workaround.
93 setTimeout(function () {
94 $("header").children(":visible").each(function (i, e) {
95 headerWidth = headerWidth + $(e).outerWidth();
98 $("body").addClass("compact-nav");
100 $("header").children(":visible").each(function (i, e) {
101 compactWidth = compactWidth + $(e).outerWidth();
104 $("body").removeClass("compact-nav");
106 $("header").removeClass("text-nowrap");
110 $(window).resize(updateHeader);
113 $("#menu-icon").on("click", function (e) {
115 $("header").toggleClass("closed");
118 $("nav.primary li a").on("click", function () {
119 $("header").toggleClass("closed");
122 var application_data = $("head").data();
124 I18n.default_locale = OSM.DEFAULT_LOCALE;
125 I18n.locale = application_data.locale;
126 I18n.fallbacks = true;
128 OSM.preferred_editor = application_data.preferredEditor;
129 OSM.preferred_languages = application_data.preferredLanguages;
131 if (application_data.user) {
132 OSM.user = application_data.user;
134 if (application_data.userHome) {
135 OSM.home = application_data.userHome;
139 if (application_data.location) {
140 OSM.location = application_data.location;
144 .attr("title", I18n.t("javascripts.site.edit_disabled_tooltip"));