X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3f26761a26f1ebd8746db166be2d30fd9b7ff7d6..7318ee4b93a5dbcb7fece8553be65f2fb858e68a:/app/assets/javascripts/application.js diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index 83c17b6ec..37172f439 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -9,14 +9,12 @@ //= require osm //= require leaflet //= require leaflet.osm -//= require leaflet.hash +//= require leaflet.map //= require leaflet.zoom -//= require leaflet.extend //= require leaflet.locationfilter //= require i18n/translations //= require oauth //= require piwik -//= require map //= require richtext //= require querystring @@ -60,12 +58,20 @@ function remoteEditHandler(bbox, select) { * Called as the user scrolls/zooms around to maniplate hrefs of the * view tab and various other links */ -function updatelinks(loc, zoom, layers, object) { +function updateLinks(loc, zoom, layers, object) { $(".geolink").each(function(index, link) { var href = link.href.split(/[?#]/)[0], - args = querystring.parse(link.search.substring(1)); + args = querystring.parse(link.search.substring(1)), + editlink = $(link).hasClass("editlink"); - if (object && $(link).hasClass("object")) args[object.type] = object.id; + if (object && editlink) { + delete args['node']; + delete args['way']; + delete args['relation']; + delete args['changeset']; + + args[object.type] = object.id; + } var query = querystring.stringify(args); if (query) href += '?' + query; @@ -76,7 +82,7 @@ function updatelinks(loc, zoom, layers, object) { zoom: zoom }; - if (layers && $(link).hasClass("layers")) { + if (layers && !editlink) { args.layers = layers; } @@ -122,16 +128,9 @@ function minimiseMap() { $("#content").removeClass("maximised"); } -/* - * Forms which have been cached by rails may have the wrong - * authenticity token, so patch up any forms with the correct - * token taken from the page header. - */ $(document).ready(function () { - var auth_token = $("meta[name=csrf-token]").attr("content"); - $("form input[name=authenticity_token]").val(auth_token); - - $("#menu-icon").on("click", function() { + $("#menu-icon").on("click", function(e) { + e.preventDefault(); $("header").toggleClass("closed"); });