X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/87127d41e95380236ba7652b14a86059ff6eeedc..2898633e72e8aa2efbcd6012a936ebab5ab58a56:/app/assets/javascripts/index/changeset.js diff --git a/app/assets/javascripts/index/changeset.js b/app/assets/javascripts/index/changeset.js index 060c5c8be..9e38917af 100644 --- a/app/assets/javascripts/index/changeset.js +++ b/app/assets/javascripts/index/changeset.js @@ -1,23 +1,22 @@ OSM.Changeset = function (map) { var page = {}, - content = $('#sidebar_content'), - currentChangesetId; + content = $("#sidebar_content"), + currentChangesetId; - page.pushstate = page.popstate = function(path, id) { - OSM.loadSidebarContent(path, function() { + page.pushstate = page.popstate = function (path, id) { + OSM.loadSidebarContent(path, function () { page.load(path, id); }); }; - page.load = function(path, id) { - if (id) - currentChangesetId = id; + page.load = function (path, id) { + if (id) currentChangesetId = id; initialize(); addChangeset(currentChangesetId, true); }; function addChangeset(id, center) { - map.addObject({type: 'changeset', id: parseInt(id, 10)}, function(bounds) { + map.addObject({ type: "changeset", id: parseInt(id, 10) }, function (bounds) { if (!window.location.hash && bounds.isValid() && (center || !map.getBounds().contains(bounds))) { OSM.router.withoutMoveListener(function () { @@ -33,7 +32,7 @@ OSM.Changeset = function (map) { $(form).find("input[type=submit]").prop("disabled", true); if (include_data) { - data = {text: $(form.text).val()}; + data = { text: $(form.text).val() }; } else { data = {}; } @@ -72,10 +71,10 @@ OSM.Changeset = function (map) { } }); - content.find("textarea").val('').trigger("input"); + content.find("textarea").val("").trigger("input"); } - page.unload = function() { + page.unload = function () { map.removeObject(); };