X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/26b47fdd188d126bef2e5829d5cc460bad530e2a..e731dd71a77ad4ad1e9db22535e89444bb98e5d9:/app/assets/javascripts/index/note.js diff --git a/app/assets/javascripts/index/note.js b/app/assets/javascripts/index/note.js index 3973420bd..3793c573e 100644 --- a/app/assets/javascripts/index/note.js +++ b/app/assets/javascripts/index/note.js @@ -1,7 +1,7 @@ OSM.Note = function (map) { - var content = $('#sidebar_content'), - page = {}, - halo, currentNote; + var content = $("#sidebar_content"), + page = {}, + halo, currentNote; var noteIcons = { "new": L.icon({ @@ -28,7 +28,7 @@ OSM.Note = function (map) { url: url, type: method, oauth: true, - data: {text: $(form.text).val()}, + data: { text: $(form.text).val() }, success: function () { OSM.loadSidebarContent(window.location.pathname, page.load); } @@ -36,16 +36,16 @@ OSM.Note = function (map) { } page.pushstate = page.popstate = function (path) { - OSM.loadSidebarContent(path, function() { - initialize(function() { - var data = $('.details').data(), - latLng = L.latLng(data.coordinates.split(',')); - if (!map.getBounds().contains(latLng)) moveToNote(); + OSM.loadSidebarContent(path, function () { + initialize(function () { + var data = $(".details").data(), + latLng = L.latLng(data.coordinates.split(",")); + if (!map.getBounds().contains(latLng)) moveToNote(); }); }); }; - page.load = function() { + page.load = function () { initialize(moveToNote); }; @@ -68,10 +68,10 @@ OSM.Note = function (map) { } }); - content.find("textarea").val('').trigger("input"); + content.find("textarea").val("").trigger("input"); - var data = $('.details').data(), - latLng = L.latLng(data.coordinates.split(',')); + var data = $(".details").data(), + latLng = L.latLng(data.coordinates.split(",")); if (!map.hasLayer(halo)) { halo = L.circleMarker(latLng, { @@ -96,12 +96,12 @@ OSM.Note = function (map) { } function moveToNote() { - var data = $('.details').data(), - latLng = L.latLng(data.coordinates.split(',')); + var data = $(".details").data(), + latLng = L.latLng(data.coordinates.split(",")); if (!window.location.hash || window.location.hash.match(/^#?c[0-9]+$/)) { OSM.router.withoutMoveListener(function () { - map.setView(latLng, 15, {reset: true}); + map.setView(latLng, 15, { reset: true }); }); } }